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