import type { EIP1193Provider } from '../../../EvmWalletProvider.types'; /** * Gets all EIP-1193 providers from window.ethereum and window.ethereum.providers. * * This function collects all injected EVM providers from the window object, * handling both single provider and multi-provider (EIP-5749) scenarios. * * This is particularly important for wallet app in-app browsers (e.g., MetaMask * mobile, Trust Wallet, Coinbase Wallet) which inject their provider into * window.ethereum rather than announcing via EIP-6963. * * @returns Array of all detected EIP-1193 providers * @not-instrumented */ export declare const getEvmInjectedProviders: () => EIP1193Provider[]; //# sourceMappingURL=getEvmInjectedProviders.d.ts.map