import BigNumber from "bignumber.js"; import type { BrowserProvider } from "ethersv6"; import type { Tx } from "../../../common/types"; import EthereumConfig from "../../tokens/ethereum"; export declare class EthereumEthersV6 extends EthereumConfig { protected provider: BrowserProvider; createTx(amount: BigNumber.Value, to: string, _fee?: string | undefined): Promise<{ txId: string | undefined; tx: any; }>; getTx(txId: string): Promise; getFee(amount: BigNumber.Value, to?: string): Promise; ready(): Promise; }