import type { AxiosInstance, AxiosResponse } from 'axios';
import type { PaginatedResponse, Transaction, DateRangeParams, BaseQueryParams } from '@cranberry-money/shared-types';
export interface ArcaTransactionQueryParams extends BaseQueryParams, DateRangeParams {
    wallet_addresses: string;
}
export declare function getArcaTransactions(arcaApiClient: AxiosInstance, params: ArcaTransactionQueryParams): Promise<AxiosResponse<PaginatedResponse<Transaction>>>;
//# sourceMappingURL=arca-transactions.d.ts.map