import * as nconf from "nconf"; declare class Config { private store; constructor(store: nconf.Provider); setStore: (store: nconf.Provider) => void; setKey: (key: string, value: any) => void; getKey: (key: string) => any; saveConfig: () => void; } declare const globalConfig: Config; declare const projectConfig: Config; export { globalConfig, projectConfig };