import { ParsedSchema } from "./index.js"; //#region src/schema/match.d.ts type JsonType = 'array' | 'boolean' | 'integer' | 'null' | 'number' | 'object' | 'string'; export declare function typeMatches(value: unknown, type: JsonType): boolean; /** * Best-effort check of whether `value` structurally belongs to `schema`, used only * to pick the initial `oneOf`/`anyOf` member of a field. */ export declare function matchesSchema(schema: ParsedSchema, value: unknown): boolean; //#endregion