import type { Ajv } from 'ajv';
/**
 * Adds JSON Logic support to Ajv
 * @param ajv The Ajv instance to extend
 * @returns The extended Ajv instance
 */
declare function ajvJsonLogic(ajv: Ajv): Ajv;
export default ajvJsonLogic;
