/// //#region src/components/booking/materiels/contacts/index.d.ts type ContactType = { country_calling_code: string; first_name: string; last_name: string; phone: string; email: string; id?: string; }; type ContactsPropsType = { value: ContactType[]; onChange: (value: ContactType[]) => void; }; declare const Contacts: (props: ContactsPropsType) => JSX.Element; //#endregion export { Contacts };