import { z } from 'zod';
export declare const feedbackSchema: z.ZodObject<{
    thumbs: z.ZodOptional<z.ZodBoolean>;
    edits: z.ZodOptional<z.ZodBoolean>;
    issues: z.ZodOptional<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
    thumbs?: boolean | undefined;
    edits?: boolean | undefined;
    issues?: boolean | undefined;
}, {
    thumbs?: boolean | undefined;
    edits?: boolean | undefined;
    issues?: boolean | undefined;
}>;
