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