/// import { FormikErrors } from 'formik'; interface IndividualModalProps { individual?: IndividualFormValues; onClose: () => void; onSubmit: (individual: IndividualFormValues) => void; validate: (values: IndividualFormValues) => Promise>; } export interface IndividualFormValues { id?: string; partyId?: string; projectCreator?: boolean; '@type': 'regen:Individual'; 'schema:name'?: string; 'schema:telephone'?: string; 'schema:email'?: string; 'regen:sharePermission'?: boolean; } declare function IndividualModal({ individual, onClose, onSubmit, validate, }: IndividualModalProps): JSX.Element; export { IndividualModal };