import { z } from "zod"; export declare const loginSchema: z.ZodObject<{ email: z.ZodString; password: z.ZodString; }, z.core.$strip>; export declare const bugReportSchema: z.ZodObject<{ title: z.ZodString; description: z.ZodString; }, z.core.$strip>; export declare const ALLOWED_FILE_TYPES: string[]; export declare function validateFileUpload(file: File): { valid: boolean; error?: string; }; //# sourceMappingURL=validationSchemas.d.ts.map