/**
 * Merges the provided lines with the corresponding currency details.
 * @param lines The lines to be merged.
 * @param currencyDetails The currency details to be merged with the lines.
 * @returns The merged data.
 */
declare function mergeData(lines: any[], currencyDetails: any[]): any[];
export default mergeData;
