UNPKG

biuauthui

Version:
11 lines (10 loc) 428 B
import { CustomChainConfig } from "@web3auth/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;