import { PortfolioId } from '../../../api-public/models/portfolio'; import { ExcelRow } from './models'; import { Operation2, ParsedOperation } from '../../../api-public/models/operations'; export declare class AppReportMapper { static operationsToExcelRows(operations: Operation2[]): ExcelRow[]; static operationToExcelRow(operation: Operation2): ExcelRow; static excelRowsToOperations(portfolioId: PortfolioId, rows: ExcelRow[]): ParsedOperation[]; private static excelRowToOperation; private static rowTypeToOperationType; private static operationTypeToRowType; private static rowCurrencyToOperationCurrency; private static rowExchangeToExchange; private static exchangeToRowExchange; }