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