import type { AlgoTransaction } from "./types"; export type GetTransactionsOptions = { minRound?: number | undefined; limit?: number | undefined; nextToken?: string | undefined; }; export declare const getAccountTransactions: (address: string, options?: GetTransactionsOptions) => Promise<{ transactions: AlgoTransaction[]; nextToken?: string; }>; export declare const getAllAccountTransactions: (address: string, startAt?: number) => Promise; //# sourceMappingURL=indexer.d.ts.map