import { AbstractFileAdapter } from '../base/AbstractFileAdapter';
/**
 * TOML File Adapter - Functional Programming
 *
 * Single Responsibility: Parse TOML configuration files only
 * Uses toml library for robust TOML parsing
 */
export declare class TomlFileAdapter extends AbstractFileAdapter {
    canHandle(filePath: string): boolean;
    read(filePath: string): Promise<Record<string, any>>;
    getFormat(): string;
    getSupportedExtensions(): string[];
}
/**
 * Pure function to parse TOML content using toml library
 */
export declare const parseTomlContent: (content: string) => Record<string, any>;
//# sourceMappingURL=TomlFileAdapter.d.ts.map