import { ConfigAdapter } from './ConfigProvider'; export declare class JsonProvider implements ConfigAdapter { config: object; constructor(config: any); hasConfig(key: string): boolean; getConfig(key: string, defaultValue?: any): any; }