import z from 'zod';
export declare const schema: z.ZodObject<{
    reportId: z.ZodString;
    variantId: z.ZodString;
    role: z.ZodPipe<z.ZodOptional<z.ZodString>, z.ZodTransform<string, string | undefined>>;
    moreDetail: z.ZodPipe<z.ZodOptional<z.ZodString>, z.ZodTransform<string, string | undefined>>;
}, z.core.$strip>;
