import { AxiosInstance, AxiosResponse } from 'axios';
import type { Transaction, TransactionQueryParams, PaginatedResponse } from '@cranberry-money/shared-types';
export declare const getTransactions: (apiClient: AxiosInstance, params?: TransactionQueryParams) => Promise<AxiosResponse<PaginatedResponse<Transaction>, any, {}>>;
export declare const getTransactionsNextPage: (lastPage: AxiosResponse<PaginatedResponse<Transaction>>) => number | undefined;
//# sourceMappingURL=transactions.d.ts.map