declare const PRODUCTION_CONFIG: { WEBSOCKET_URL: string; BASE_API_URL: string; }; declare const DEVELOPMENT_CONFIG: { WEBSOCKET_URL: string; BASE_API_URL: string; }; declare const STAGING_CONFIG: { WEBSOCKET_URL: string; BASE_API_URL: string; }; export type EnvironmentConfig = typeof DEVELOPMENT_CONFIG | typeof PRODUCTION_CONFIG | typeof STAGING_CONFIG; export declare const getConfig: (environment?: Environment) => EnvironmentConfig; export type Environment = "development" | "production" | "staging"; export {};