import { type XSchemaObject } from './schema.mjs'; export interface XDefault { default: Default; } /** * Returns true if the schema contains a valid contentMediaType property * @specification Json Schema 7 */ export declare function IsDefault(schema: XSchemaObject): schema is XDefault;