/* eslint-disable ts/no-namespace */
// Copy of https://github.com/standard-schema/standard-schema/blob/main/packages/spec/src/index.ts
// THIS IS A STANDARD, NEVER CHANGE THE CONTENTS OF THIS FILE!
/** The Standard Schema interface. */
export interface 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