import { BaseAdapterConfig, IWalletConnectExtensionAdapter } from "@web3auth/base";
import { ModalStatusType } from "../interfaces";
interface ExternalWalletsProps {
    handleExternalWalletClick: (params: {
        adapter: string;
    }) => void;
    config: Record<string, BaseAdapterConfig>;
    walletConnectUri: string | undefined;
    modalStatus: ModalStatusType;
    wcAdapters: IWalletConnectExtensionAdapter[];
}
export default function ExternalWallet(props: ExternalWalletsProps): import("react/jsx-runtime").JSX.Element;
export {};
