import { FC } from 'react'; import { DropdownOption } from '../../blocks/Dropdown'; import { RadioItem } from '../../blocks/RadioButtons'; export interface FormRegisterValues { firstName: string; lastName: string; emailAddress: string; phoneNumber: unknown; password: string; partnerType: string; company?: string; countryCode: string; trackingCode: string; passwordConfirm?: string; } export interface FormRegisterLabels { firstName: string; lastName: string; emailAddress: string; phoneNumber: string; password: string; company?: string; inProgress: string; showPassword: string; hidePassword: string; passwordConfirm?: string; accountInformation: string; contactInformation: string; partnerTypes: string; country: string; register: string; registerInfo: string; completeTitle: string; completeFeedback: string; modalTitle: string; next: { title: string; desc: string; stepsTitle: string; steps: Array; }; } export interface FormRegisterErrors { firstName?: string; lastName?: string; emailAddress?: string; phoneNumber?: { isValid: boolean; number: string; }; password?: string; passwordConfirm?: string; partnerType?: string; company?: string; countryCode?: string; } export interface FormRegisterTouched { [key: string]: unknown; } export interface FormRegisterProps { values: FormRegisterValues; touched: FormRegisterTouched; errors: FormRegisterErrors; labels: FormRegisterLabels; showAccountInfo: boolean; showButton: boolean; partnerTypes: RadioItem[]; countryCodes: DropdownOption[]; handleChange: (e: any) => void; handleBlur: (e: any) => void; handleSubmit: (e: any) => void; isSubmitting?: boolean; status?: { msg: string; }; partnerType: string; isSuccessful: boolean; } declare const FormRegister: FC; export default FormRegister;