import { TonAccountInfo, TonFee, TonJettonTransfer, TonJettonWallet, TonTransactionsList } from "./api.types"; export declare function fetchLastBlockNumber(): Promise; export declare function fetchTransactions(addr: string, opts?: { startLt?: string; endLt?: string; }): Promise; export declare function fetchAccountInfo(addr: string): Promise; export declare function fetchJettonTransactions(addr: string, opts?: { jettonMaster?: string; startLt?: string; endLt?: string; }): Promise; export declare function fetchJettonWallets(opts?: { address?: string; jettonMaster?: string; }): Promise; export declare function estimateFee(address: string, body: string, initCode?: string, initData?: string): Promise; export declare function broadcastTx(bocBase64: string): Promise; export declare function fetchAdjacentTransactions(txHash: string, dir?: "in" | "out"): Promise; //# sourceMappingURL=api.d.ts.map