export declare class ReassembleXMLFileHandler {
    reassemble(xmlAttributes: {
        filePath: string;
        fileExtension?: string;
        postPurge?: boolean;
    }): Promise<void>;
    processFilesInDirectory(dirPath: string): Promise<any[]>;
    private _sortFilesByBaseName;
    private _isParsableFile;
    private _validateDirectory;
    private _logEmptyParseError;
    private _getOutputPath;
}
