import { BigNumberish, Contract } from 'ethers'; import { Connection, GasData } from '../types/types'; interface ContractOverrides { value?: BigNumberish; } interface Config { connection: Connection; contract: Contract; method: string; args?: any[]; options?: ContractOverrides; } export declare function estimateTransactionGas({ connection, contract, method, args, options }: Config): Promise; export {};