/** * Object containing URLs for common utility endpoints. * These URLs are used for various common operations such as ObjectId generation, etc. */ declare const commonRoutesUrl: { module: string; /** Endpoint to generate a single ObjectId */ generateObjectId: string; /** Endpoint to generate multiple ObjectIds */ generateObjectIds: string; }; export { commonRoutesUrl };