import { FC } from "react"; /** * Contact Form component. */ declare const ContactForm: FC<{ onFinish: () => void; }>; export default ContactForm;