UNPKG

@dapplets/dapplet-extension

Version:
15 lines (14 loc) 447 B
import { FC } from 'react'; export interface ProfileProps { handleWalletConnect: () => void; isWalletLength: boolean; handleWalletLengthConnect: () => void; isOverlay: boolean; isMini: boolean; setOpenWallet: () => void; isOpenWallet: boolean; setOpenWalletMini: () => void; setConnectedDescriptors: (x: []) => void; setSelectedWallet: (x: string) => void; } export declare const Profile: FC<ProfileProps>;