import React from 'react'; import './index.less'; import type { IUserLogin } from '../types'; import * as H from 'history'; export interface LoginProps { /** * 获取校验码方法 */ onCaptchaClick?: (mobile: string) => Promise; /** * 提价 */ onSubmit?: IUserLogin.LoginSubmit; /** * 验证码倒数 */ captchaCountDown?: number; /** * 忘记密码 url */ onForgotClick?: (history: H.History) => void; } declare const Login: React.FC; export default Login;