import type { JSONSchema } from './types.js';
export declare const AnySchema: {
    title: string;
    oneOf: ({
        type: string;
        additionalProperties?: undefined;
    } | {
        type: string;
        additionalProperties: boolean;
    })[];
};
export declare function healJSONSchema(schema: JSONSchema, debugLogFn?: (message?: any) => void): Promise<JSONSchema>;
