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