import { ConfigWriter } from './'; import { Codec, CodecType, InnerType } from './config-codec-types'; import { ConfigSectionWriter } from './config-section'; export declare class ConfigFileSectionWriter implements ConfigSectionWriter { private readonly key; private readonly configWriter; constructor(key: K, configWriter: ConfigWriter); writeConfigSection(configSection: V): Promise; prependAppNameToModules(name: string): Promise; } export declare const configFileWriterForSection: (key: K, schema: CodecType

, configWriter: ConfigWriter) => ConfigSectionWriter>; //# sourceMappingURL=config-file-section-writer.d.ts.map