import { SignedTx } from '../../serializable/avax'; import { Api } from '../common/baseApi'; import { ChainApi } from '../common/chainAPI'; import type { GetAtomicTxParams, GetAtomicTxStatusResponse } from './model'; export declare class EVMApi extends ChainApi { ethAPI: EthereumAPI; constructor(baseURL?: string); getAtomicTx: (getTxParams: GetAtomicTxParams) => Promise; getBaseFee(): Promise; getAtomicTxStatus(txID: string): Promise; } declare class EthereumAPI extends Api { constructor(baseURL?: string); getBaseFee(): Promise; } export {}; //# sourceMappingURL=api.d.ts.map