export declare type EnvKey = 'local' | 'microfin' | 'prod'; export interface IEnvironment { production?: boolean; myToken?: string; envKey: string; baseUrl: string; apiBaseUrl: string; fileBaseUrl: string; hostUI: string; loginUI: string; } export declare type Environments = { [key in EnvKey]: IEnvironment; };