import type { StandardSchemaV1 } from '@standard-schema/spec'; import { type Path } from './path.ts'; export type { StandardSchemaV1 }; export declare function runStandardSchema(schema: StandardSchemaV1, value: unknown, path: Path): Promise; export declare function validateItem(schema: StandardSchemaV1, value: unknown, path: Path, onInvalid: 'throw' | 'skip'): Promise<{ skip: true; } | { value: O; }>;