import { JSONSchemaType, ValidateFunction } from 'ajv'; import { Options } from 'to-json-schema'; export declare function schemaFrom(json: Record, options?: Options & { nullable?: boolean; }): Record; export declare function isJsonSchemaObject(schema: Record): schema is JSONSchemaType; export declare function schemaToJson(schema: Record, container?: Record): unknown; export declare function flatSchema(schema: Record, parentKey?: string, nestingDelimiter?: string, container?: Record): Record; export declare function createValidator(schema: Record, enableFormats?: boolean): ValidateFunction; export declare function createValidators(schemaLookup: Record, enableFormats?: boolean): Record; //# sourceMappingURL=schema.util.d.ts.map