import { ConfigValue } from './Json/Json.types'; export interface IConfigurationSection { getSection(key: string): IConfigurationSection; get(key?: string): T; } export interface IConfiguration extends IConfigurationSection { root: IConfigurationSection; } export interface IConfigurationBuilder { build(reload?: boolean): IConfiguration; } export declare function parseKey(key: string): string[];