import { BaseAdapterConfig, ChainNamespaceType, WalletRegistry } from "@web3auth/base"; import { ModalStatusType } from "../interfaces"; interface ExternalWalletsProps { hideExternalWallets: () => void; handleExternalWalletClick: (params: { adapter: string; }) => void; closeModal: () => void; config: Record; walletConnectUri: string | undefined; showBackButton: boolean; modalStatus: ModalStatusType; chainNamespace: ChainNamespaceType; walletRegistry?: WalletRegistry; } export default function ExternalWallet(props: ExternalWalletsProps): import("react/jsx-runtime").JSX.Element; export {};