import defaultConfig from '../config/default'; declare type configType = ReturnType; declare module 'config' { interface IConfig extends configType { [key: string]: any; } } export {};