import type { OpenfortEthereumBridgeValue } from '../../ethereum/OpenfortEthereumBridgeContext'; import type { ExternalConnectorProps } from '../../wallets/useExternalConnectors'; import type { ConnectionStrategy } from '../ConnectionStrategy'; /** * Creates the EVM strategy when wagmi bridge is present. * Delegates to bridge for account, chain, connectors, and switchChain. * * @param bridge - Wagmi bridge context value * @param connectors - Mapped connector props for the UI */ export declare function createEthereumBridgeStrategy(bridge: OpenfortEthereumBridgeValue, connectors: ExternalConnectorProps[]): ConnectionStrategy;