import type { Account, Transaction } from '../../core/types/domain.js';
export declare class BalanceHistoryDataFetcher {
    fetchAll(accountId: string | undefined, start: string, end: string): Promise<{
        account: Account | undefined;
        accounts: Account[];
        transactions: Transaction[];
    }>;
}
//# sourceMappingURL=data-fetcher.d.ts.map