import type { GetTransactionsForAddressConfigFull, GetTransactionsForAddressConfigSignatures, GetTransactionsForAddressResultFull, GetTransactionsForAddressResultSignatures } from "../../types"; import type { RpcCaller } from "../caller"; export type GetTransactionsForAddressFn = { (params: [string, GetTransactionsForAddressConfigFull]): Promise; (params: [string, GetTransactionsForAddressConfigSignatures?]): Promise; }; export declare const makeGetTransactionsForAddress: (call: RpcCaller) => GetTransactionsForAddressFn; //# sourceMappingURL=getTransactionsForAddress.d.ts.map