interface PropTypes { visible: boolean; type: ['customer', 'business']; registerType: ['customer', 'business']; isShowRegisterAccount: boolean; } declare const LogForm: { (props: PropTypes): JSX.Element; defaultProps: { visible: boolean; type: string; registerType: string; isShowRegisterAccount: boolean; }; }; export default LogForm;