import { UseSendCallsParams } from '../types'; /** * useSendCalls: Experimental Wagmi hook for batching transactions with calldata. * Supports Smart Wallets. * Supports batch operations and capabilities such as paymasters. * Does not support EOAs. */ export declare function useSendCalls({ setLifecycleStatus, setTransactionId, }: UseSendCallsParams): { status: "pending" | "error" | "success" | "idle"; sendCallsAsync: import('wagmi/query').SendCallsMutateAsync; data: { capabilities?: { [x: string]: any; } | undefined; id: string; } | undefined; reset: () => void; }; //# sourceMappingURL=useSendCalls.d.ts.map