import React from 'react'; import { FormInstance } from 'antd'; import { SRProps } from '../types'; import '../index.less'; interface IProps extends SRProps { form: FormInstance; emailToken?: string; } declare const EntryInfo: (props: IProps) => React.JSX.Element; export default EntryInfo;