diff --git a/src/standard-schema/StandardSchema.ts b/src/standard-schema/StandardSchema.ts
new file mode 100644
index 0000000000..58a64dc661
--- /dev/null
+++ b/src/standard-schema/StandardSchema.ts
@@ -0,0 +1,110 @@
+/**
+ * The Standard Schema interface.
+ */
+export type StandardSchemaV1 = {
+ /**
+ * The Standard Schema properties.
+ */
+ readonly '~standard': StandardSchemaV1.Props;
+};
+
+export declare namespace StandardSchemaV1 {
+ /**
+ * The Standard Schema properties interface.
+ */
+ export interface Props {
+ /**
+ * The version number of the standard.
+ */
+ readonly version: 1;
+ /**
+ * The vendor name of the schema library.
+ */
+ readonly vendor: string;
+ /**
+ * Validates unknown input values.
+ */
+ readonly validate: (value: unknown) => Result