import React from 'react'; import { ConnectionStatus } from '../types/ProviderTypes'; interface IProps { children: React.ReactNode; onChangeConnectionStatus?: (status: ConnectionStatus) => void; onNetworkChanged?: (networkId: string) => void; onConnect?: () => void; onDisconnect?: () => void; onChangeAccount?: (newAddress: string) => void; options?: { showDebug?: boolean; }; } export declare const EthersProvider: React.FC; export {};