type FormValues = { [key: string]: string | boolean | number | string[] | number[] | boolean[] | null; }; type FormErrors = { [key: string]: string; }; export type { FormValues, FormErrors };