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