import * as v from "@exodus/schemasafe"; export declare type IIdObject = import("bson").ObjectId; export declare const IdObjectSchema: Readonly<{ readonly $schema: "https://json-schema.org/draft/2020-12/schema"; readonly $id: "id_object"; readonly title: "IdObject"; readonly tsType: "import(\"bson\").ObjectId"; readonly type: "object"; readonly additionalProperties: true; readonly readOnly: true; }>; export declare function validateIdObject(value: unknown, options?: v.ValidatorOptions): v.ParseResult; export declare function assertIdObject(value: unknown): asserts value is IIdObject;