/** * Mongo ObjectId shape — 24 hex chars, case-insensitive. The CLI accepts * either-case input (curl/jq users tend to lowercase, admin URLs sometimes * upper). All inspect grammars use the same pattern, so it lives here. */ export declare const HEX24: RegExp; export declare function isObjectId(value: string): boolean;