/** * An INI section. */ export declare type IniSection = Map; /** * An INI file. */ export declare class IniFile { properties: Map; sections: Map; load(buffer: string): void; save(): string; getSection(name: string): IniSection | undefined; }