export type ServiceUrls = { httpUrl: string; wsUrl: string; }; export type ServiceEnv = "prod" | "stag" | ServiceUrls; export declare const getServiceUrls: (env: ServiceEnv) => ServiceUrls; export declare const isProd: (productionFactor: string | boolean) => boolean;