@web3auth/ui
Version:
Ui modal for web3Auth
18 lines (17 loc) • 670 B
TypeScript
import { BaseAdapterConfig, ChainNamespaceType, WalletRegistry } from "@web3auth/base";
import { ModalStatusType } from "../interfaces";
interface ExternalWalletsProps {
hideExternalWallets: () => void;
handleExternalWalletClick: (params: {
adapter: string;
}) => void;
closeModal: () => void;
config: Record<string, BaseAdapterConfig>;
walletConnectUri: string | undefined;
showBackButton: boolean;
modalStatus: ModalStatusType;
chainNamespace: ChainNamespaceType;
walletRegistry?: WalletRegistry;
}
export default function ExternalWallet(props: ExternalWalletsProps): import("react/jsx-runtime").JSX.Element;
export {};