import { z } from "zod"; export declare const feedbackTypeSchema: z.ZodEnum<{ bug: "bug"; feature: "feature"; note: "note"; }>; export declare const submitFeedbackSchema: z.ZodObject<{ type: z.ZodEnum<{ bug: "bug"; feature: "feature"; note: "note"; }>; message: z.ZodPipe>, z.ZodString>; app_id: z.ZodOptional; }, z.core.$strip>;