import { type XSchemaObject } from './schema.mjs'; export interface XMinLength { minLength: MinLength; } /** * Returns true if the schema contains a valid minLength property * @specification Json Schema 7 */ export declare function IsMinLength(schema: XSchemaObject): schema is XMinLength;