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