import { BigNumber } from 'bignumber.js';
export interface EstimateGasOption {
    from?: string;
    to: string;
    data: any;
    amount?: BigNumber | number;
    gasPrice?: number;
}
