import React from 'react'; import './index.less'; interface IGenerateKeyModalProps { open: boolean; closeIcon?: string; backIcon?: string; walletIcon?: string; walletType?: string; setOpen: (value: boolean) => void; onLoginConnect?: (value: string) => void; onAccess?: (value: string, nickname: string) => void; onMetaMaskConnect?: () => void; } declare const GenerateKeyModal: React.FC; export { GenerateKeyModal };