declare namespace v1 {
/**
* The Standard Schema interface.
*/
interface StandardSchema {
/**
* The Standard Schema properties.
*/
readonly "~standard": StandardSchemaProps;
}
/**
* The Standard Schema properties interface.
*/
interface StandardSchemaProps {
/**
* 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) => StandardResult