import { FunctionCall } from './iface'; /** * Contains parameters to call a Near Function Call action */ export declare class ContractCallWrapper { private _methodName; private _args; private _gas; private _deposit; /** Set method contract name */ set methodName(methodName: string); /** Get method contract name */ get methodName(): string; /** Set gas, expressed on yocto */ set gas(gas: string); /** Get gas, expressed on yocto*/ get gas(): string; /** Set deposit, expressed on yocto */ set deposit(deposit: string); /** Get deposit, expressed on yocto */ get deposit(): string; /** Get args, which are the parameters of a method */ set args(args: Record); /** Set args, which are the parameters of a method */ get args(): Record; /** * Get all parameters of the contractCallWrapper * @returns {FunctionCall} */ getParams(): FunctionCall; private isValidAmount; } //# sourceMappingURL=contractCallWrapper.d.ts.map