import BigNumber from '../../../dependencies/src/bignumber.js-9.0.0/bignumber'; import { MichelsonType } from '../types/michelson/MichelsonType'; import { TezosTransactionParameters } from '../types/operations/Transaction'; export declare class TezosContractCall { readonly entrypoint: string; readonly michelsonValue: MichelsonType | undefined; readonly amount?: BigNumber | undefined; constructor(entrypoint: string, michelsonValue: MichelsonType | undefined, amount?: BigNumber | undefined); args(): any | undefined; toJSON(): TezosTransactionParameters; }