import { AbstractFileAdapter } from '../base/AbstractFileAdapter';
export declare class IniFileAdapter extends AbstractFileAdapter {
    canHandle(filePath: string): boolean;
    read(filePath: string): Promise<Record<string, any>>;
    private parseIniContent;
    private parseValue;
    getFormat(): string;
    getSupportedExtensions(): string[];
}
//# sourceMappingURL=IniFileAdapter.d.ts.map