import type { OctavAPIClient } from '../api/client.js'; export declare const getTransactions: { definition: { name: string; title: string; description: string; inputSchema: { type: string; properties: { addresses: { type: string; items: { type: string; }; description: string; minItems: number; maxItems: number; }; chain: { type: string; description: string; }; type: { type: string; description: string; }; startDate: { type: string; description: string; }; endDate: { type: string; description: string; }; offset: { type: string; description: string; minimum: number; default: number; }; limit: { type: string; description: string; minimum: number; maximum: number; default: number; }; }; required: string[]; }; annotations: { readOnlyHint: boolean; destructiveHint: boolean; openWorldHint: boolean; }; }; execute(args: any, apiClient: OctavAPIClient): Promise<{ content: { type: string; text: string; }[]; }>; }; export declare const syncTransactions: { definition: { name: string; title: string; description: string; inputSchema: { type: string; properties: { addresses: { type: string; items: { type: string; }; description: string; minItems: number; maxItems: number; }; }; required: string[]; }; annotations: { readOnlyHint: boolean; destructiveHint: boolean; openWorldHint: boolean; }; }; execute(args: any, apiClient: OctavAPIClient): Promise<{ content: { type: string; text: string; }[]; }>; }; //# sourceMappingURL=transactions.d.ts.map