export declare type EnvType = 'development' | 'production'; export interface IChuckConfig { release: string; env: EnvType; logLevel: string; serverPort: number; mongoUrl: string; ravenDsn: string; redis: { host: string; port: number; db: number; }; adminWebUis: { enable: boolean; user: string; password: string; }; unityPath: string | undefined; azure: { enableEmu: boolean; }; stepModulePlugins: string[]; } declare const config: IChuckConfig; export default config;