/**
* 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