import type { Provider } from '../types'; declare type BlockTag = string | number; interface TransactionRequest { to: string; data: string; } export interface EthersProviderLike { call(transaction: TransactionRequest, blockTag?: BlockTag | Promise): Promise; } /** * Ethers.js provider, which can be used with an instance of the Ethers.js Provider class. */ declare const provider: Provider; export default provider; //# sourceMappingURL=ethers.d.ts.map