/** * * @param loginRouterName 忘记密码成功后跳转的页面 * @param request 请求方法 * @param md5 加密方式 * @returns */ declare function useForgetPassword(request: any, md5: any, callback: any, props: any): { validate: { /** * @description 电话号码验证 */ phoneValidate: RegExp; /** * @description 密码验证 */ passwordValidate: RegExp; }; showPassword: () => void; sendVC: () => void; onSubmit: (values: any) => void; validatePwd: (value: any) => string | true | undefined; validatePwdSure: (value: any) => true | "两次密码输入不一致!"; account: import("vue").Ref; phone: import("vue").Ref; verificationCode: import("vue").Ref; newPassword: import("vue").Ref; confirmPassword: import("vue").Ref; passwordType: import("vue").Ref; isSend: import("vue").Ref; phoneValidator: import("vue").Ref<(val: any) => boolean>; countDown: import("vue").Ref<{ start: () => void; pause: () => void; reset: (totalTime?: number | undefined) => void; current: import("@vant/use").CurrentTime; }>; isCounting: import("vue").Ref; }; export default useForgetPassword;