import * as t from 'io-ts'; import { ConfigReader } from './config'; import { Codec, CodecType, InnerType } from './config-codec-types'; import { ConfigSectionReader } from './config-section'; export declare const NO_VALIDATION: t.TypeC<{}>; export declare type NO_VALIDATION_TYPE = t.TypeOf; export declare class ConfigFileSectionReader { private readonly configReader; constructor(configReader: ConfigReader); readConfigSection(key: K, schema: CodecType): Promise | 'missing' | 'invalid'>; } export declare const configFileReaderForSection: (key: K, schema: CodecType

, configReader: ConfigReader) => ConfigSectionReader>; //# sourceMappingURL=config-file-section-reader.d.ts.map