import type { ValidationResult } from '../types/index.js'; import type { JSONSchema } from './merger.js'; /** * Create a validator function from a JSON Schema using AJV. */ export declare function createSchemaValidator(schema: JSONSchema): (value: unknown) => ValidationResult; //# sourceMappingURL=validator.d.ts.map