import type { StandardSchemaV1 } from '@standard-schema/spec'; import type { ISchemaCheckOptions } from '../mapping/types/schema.js'; import type { ISchemaDeclaration } from '../schema/shared/types/schema.js'; import type { Version } from '../schema/shared/types/version.js'; /** * Deeply check JSON schema given `Data Check` or `StandardSchemaV1` schema. * * Strict null policy. Return error logs as `StandardSchemaV1.Issue[]` for error inspection. */ export declare function schemaCheck(data: unknown, schema: Schema, label: string, version?: Version | undefined, throwOn?: Partial, _errors?: StandardSchemaV1.Issue[]): StandardSchemaV1.Issue[]; //# sourceMappingURL=schema.d.ts.map