UNPKG

@web3auth-mpc/ui

Version:
11 lines (10 loc) 432 B
import { CustomChainConfig } from "@web3auth-mpc/base"; interface SwitchNetworkProps { currentChainConfig: CustomChainConfig; newChainConfig: CustomChainConfig; appOrigin: string; onSwitchNetwork: (currentChainId: string, newChainId: string) => void; onCancelNetwork: () => void; } declare function SwitchNetwork(props: SwitchNetworkProps): import("react/jsx-runtime").JSX.Element; export default SwitchNetwork;