import type React from 'react'; declare const states: { CONNECTED: string; CONNECTING: string; FAILED: string; REJECTED: string; NOTCONNECTED: string; UNAVAILABLE: string; SIWE: string; RECOVER_ADDRESS_MISMATCH: string; }; declare const ConnectWithInjector: React.FC<{ switchConnectMethod: (id?: string) => void; forceState?: typeof states; }>; export default ConnectWithInjector;