import { UseVerificationCodeProps } from './hooks'; declare type VerificationCodeProps = UseVerificationCodeProps; /** * 发送验证码 * @params * sendCode : 发送验证码函数 * firstToSend : 第一次是否已经通过后端发送 */ declare const VerificationCode: (props: VerificationCodeProps) => JSX.Element; export default VerificationCode;