import type { ValidateFunction } from 'ajv'; type AjvInstance = { compile: (schema: JsonSchema) => ValidateFunction; getSchema: (id: string) => ValidateFunction | undefined; }; export declare function getAjv(): AjvInstance; type JsonSchema = { $id?: string; } & Record; export declare function compileSchema(schemaPath: string): ValidateFunction; export declare function compileSchemaFromDir(schemaDir: string, filename: string): ValidateFunction; export {}; //# sourceMappingURL=ajv.d.ts.map