import * as z from "zod"; export declare const supportFormSchema: z.ZodObject<{ type: z.ZodLiteral<"support">; firstName: z.ZodString; lastName: z.ZodString; email: z.ZodString; company: z.ZodString; submissionType: z.ZodDefault>>; message: z.ZodString; }, z.core.$strip>; export declare const demoFormSchema: z.ZodObject<{ type: z.ZodLiteral<"demo">; firstName: z.ZodString; lastName: z.ZodString; email: z.ZodString; company: z.ZodString; website: z.ZodDefault>; phone: z.ZodString; targetMarket: z.ZodDefault>>; communicationLanguage: z.ZodDefault>; interests: z.ZodDefault>>; message: z.ZodString; }, z.core.$strip>; export type SupportFormValues = z.infer; export type DemoFormValues = z.infer; export type ContactFormType = SupportFormValues | DemoFormValues; export declare enum ContactFormStatus { SUPPORT = "support", DEMO = "demo" } //# sourceMappingURL=contact-form.d.ts.map