interface GetTransactionsArgs { mode?: 'snapshot' | 'date_range'; startDate?: string; endDate?: string; accountIds?: string[]; pageToken?: string; pageSize?: number; responseFormat?: 'concise' | 'detailed' | 'raw_json'; } export declare function getTransactionsTool(args: GetTransactionsArgs): Promise<{ content: { type: string; text: any; }[]; }>; export {}; //# sourceMappingURL=get-transactions.d.ts.map