import { type XSchemaObject } from './schema.mjs'; export interface XId { $id: Id; } /** * Returns true if the schema contains a valid $id property * @specification Json Schema 7 */ export declare function IsId(schema: XSchemaObject): schema is XId;