/**
* Minimal vendored Standard Schema v1 types.
* Vendoring keeps schema integration type-only and avoids a runtime dependency.
*
* @see https://standardschema.dev
*/
export interface StandardSchemaV1 {
readonly "~standard": StandardSchemaV1.Props;
}
export declare namespace StandardSchemaV1 {
export interface Props {
readonly version: 1;
readonly vendor: string;
readonly validate: (
value: unknown,
) => Result