import { AbstractFileAdapter } from '../base/AbstractFileAdapter';
/**
 * INI File Adapter - Functional Programming
 *
 * Single Responsibility: Parse INI configuration files only
 * Pure functions, no state, no side effects
 */
export declare class IniFileAdapter extends AbstractFileAdapter {
    canHandle(filePath: string): boolean;
    read(filePath: string): Promise<Record<string, any>>;
    getFormat(): string;
    getSupportedExtensions(): string[];
}
/**
 * Pure function to parse INI content
 */
export declare const parseIniContent: (content: string) => Record<string, any>;
/**
 * Pure function to parse an INI value
 */
export declare const parseIniValue: (value: string) => any;
//# sourceMappingURL=IniFileAdapter.d.ts.map