import { Undefinable } from '../../Types'; import { IConfigurationSection } from '../_types'; import { ConfigValue } from './Json.types'; export default class JsonConfigurationSection implements IConfigurationSection { #private; constructor(source: Record); getSection(key: string): IConfigurationSection; get(): Undefinable; get(key: string): Undefinable; }