import type { Provider } from '../types';
export interface EthersProviderLike {
    send<Result>(method: string, params: unknown[] | unknown): Promise<Result>;
}
/**
 * Ethers.js provider, which can be used with an instance of the Ethers.js Provider class.
 */
declare const provider: Provider<EthersProviderLike>;
export default provider;
//# sourceMappingURL=ethers.d.ts.map