import { WalletHookInterface } from '../../types'; import { DiscoverInterface } from '../discover/useDiscover'; import { PortkeyInterface } from '../portkey/usePortkey'; import { PortkeyInterface as PortkeyInterfaceV1 } from '../portkey/usePortkey/indexV1'; interface IProps { headerClassName: string; contentClassName: string; portkeyApi: PortkeyInterface | PortkeyInterfaceV1; elfApi: WalletHookInterface; discoverApi: DiscoverInterface; isBridgeNotExist: boolean; version?: string; } export default function ExtraWallets({ headerClassName, contentClassName, portkeyApi, elfApi, discoverApi, isBridgeNotExist, version, }: IProps): import("react/jsx-runtime").JSX.Element; export {};