import type { providers } from 'near-api-js'; import type { ComposableCall, NearExecuteOptions } from '../types'; /** * Base method for executing contract calls. * @param signing object containing either near wallet selector * @param calls {@link NearContractCall[]} any number of single calls or array of calls * wallet: {@link Wallet} or account: {@link Account}, defaults to wallet when present * @returns an outcome object or an array of outcome objects if batching calls {@link FinalExecutionOutcome[]} | {@link FinalExecutionOutcome}, or a redirect to selected callbackUrl */ export declare const execute: ({ wallet, account, callbackUrl, callbackArgs }: NearExecuteOptions, ...calls: ComposableCall[]) => Promise; //# sourceMappingURL=execute.d.ts.map