import type { Account, Transaction } from '../types/domain.js';
export declare function fetchTransactionsForAccount(accountId: string, start: string, end: string): Promise<Transaction[]>;
export declare function fetchAllOnBudgetTransactions(accounts: Account[], start: string, end: string): Promise<Transaction[]>;
export declare function fetchAllTransactions(accounts: Account[], start: string, end: string): Promise<Transaction[]>;
//# sourceMappingURL=fetch-transactions.d.ts.map