Re-exports the `ContactForm` component along with its associated TypeScript types from the `contact-form` module. ## Key Components | Export | Type | Description | |--------|------|-------------| | `ContactForm` | Component | The main contact form component | | `ContactFormProps` | Type | Props interface for the `ContactForm` component | | `ContactFormHideableField` | Type | Type representing fields that can be hidden in the form | ## Usage Example ```typescript import { ContactForm, type ContactFormProps, type ContactFormHideableField, } from '@/components/contact-form' const hiddenFields: ContactFormHideableField[] = ['phone', 'company'] const props: ContactFormProps = { onSubmit: (data) => console.log(data), hideFields: hiddenFields, } ```