import * as Yup from 'yup'; import { ServerActionResponse } from '@/common-types'; declare const ContactUsSchema: Yup.ObjectSchema<{ name: string; email: string; subject: string; message: string; }, Yup.AnyObject, { name: undefined; email: undefined; subject: undefined; message: undefined; }, "">; export type ContactUsSchemaType = Yup.InferType; interface FormProps { onSubmit?: (values: ContactUsSchemaType) => Promise>; } export declare function Form({ onSubmit }?: FormProps): import("react/jsx-runtime").JSX.Element; export {};