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