import type { JSONSchemaType } from 'ajv';
export interface AjvValidateFn {
    <T>(value: any, schema: JSONSchemaType<T>, prefix: string): value is T;
    errors: string[];
}
export declare const validate: AjvValidateFn;
export declare const compile: (schema: JSONSchemaType<any>) => void;
