import type { Transaction } from '../../types.js';
export declare class GetTransactionsMapper {
    map(transactions: Transaction[]): Array<{
        id: string;
        date: string;
        payee: string;
        category: string;
        amount: string;
        notes: string;
        cleared: boolean;
    }>;
}
//# sourceMappingURL=transaction-mapper.d.ts.map