import { JsonRpcProvider } from '@ethersproject/providers'; import { Provider as Eip1193Provider } from '@web3-react/types'; import { PropsWithChildren } from 'react'; import { SupportedChainId } from '../types'; import { JsonRpcConnectionMap } from './useJsonRpcUrlsMap'; interface ProviderProps { provider?: Eip1193Provider | JsonRpcProvider; jsonRpcMap?: JsonRpcConnectionMap; defaultChainId?: SupportedChainId; } export declare function Provider({ defaultChainId, jsonRpcMap, provider, children, }: PropsWithChildren): JSX.Element; export {};