import type Web3 from 'web3'; import { Ethereum } from '../global'; declare const getEthereum: () => Ethereum | undefined; declare const isEthereumPresent: () => boolean; declare const isEthereumFromMetamask: () => boolean; export interface InjectedEthereum { ethereum: Ethereum; web3: Web3; isMetaMask: boolean; } declare const getInjectedEthereum: () => Promise; export { getEthereum, getInjectedEthereum, isEthereumFromMetamask, isEthereumPresent, }; //# sourceMappingURL=ethereum.d.ts.map