import { z } from 'zod';
export declare const supportSchema: z.ZodObject<{
    problemType: z.ZodEnum<{
        tecnico: "tecnico";
        acesso: "acesso";
        outros: "outros";
    }>;
    title: z.ZodString;
    description: z.ZodString;
}, z.core.$strip>;
export type SupportFormData = z.infer<typeof supportSchema>;
//# sourceMappingURL=index.d.ts.map