export type EnvironmentConfig = { apiUrl: string; environment: Environment; protocol: Protocol; blob: string; }; export declare enum Environment { Development = "development", Test = "test", Production = "production" } export declare enum Protocol { HTTP = "http", HTTPS = "https" }