import'dotenv/config';
/**
* Connect to MongoDB with robust error handling and retry logic
* This function is idempotent - safe to call multiple times
*/declarefunctionconnectDB(): Promise<void>;
declareconstcustomUUID: () =>string;
export { connectDB, customUUID };