import React from 'react'; import { FormInstance } from 'antd'; import { SRProps } from '../types'; import '../index.less'; interface EntryEmailProps extends SRProps { form: FormInstance; handleVerifyEmail: (bool: boolean) => Promise; } declare const EntryEmail: (props: EntryEmailProps) => React.JSX.Element; export default EntryEmail;