/** * Created by jiangzhixiong on 2024/03/18 */ import { FC } from 'react'; import { FormProps } from 'antd'; interface PasswordProps { onFinish: FormProps['onFinish']; onCancel: () => void; } declare const Password: FC; export default Password;