import { JSONSchema7 } from "json-schema"; export default function cleanGptResponse(gptResponse: string, schema: JSONSchema7): string | null; /** * Get the primitive JS type name for the type in the JSON Schema object */ export declare function getWrappedValueType(schema: JSONSchema7): "number" | "boolean" | "object" | "string" | null; export declare function isSchemaForNull(schema: JSONSchema7): boolean;