import { FC } from 'react'; export interface FormCompleteRegisterValues { token: string; password: string; passwordConfirm: string; } export interface FormCompleteRegisterLabels { password: string; passwordConfirm: string; register: string; showPassword: string; hidePassword: string; } export interface FormCompleteRegisterErrors { password?: string; passwordConfirm?: string; } export interface FormCompleteRegisterTouched { [key: string]: unknown; } export interface FormCompleteRegisterProps { values: FormCompleteRegisterValues; touched: FormCompleteRegisterTouched; errors: FormCompleteRegisterErrors; labels: FormCompleteRegisterLabels; handleChange: (e: any) => void; handleBlur: (e: any) => void; handleSubmit: (e: any) => void; isSubmitting?: boolean; status?: { msg: string; }; } declare const FormCompleteRegister: FC; export default FormCompleteRegister;