import { z } from 'zod'; export declare const postEmailBackofficeSchema: z.ZodObject<{ toUserId: z.ZodString; subject: z.ZodString; message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; toUserId: string; subject: string; }, { message: string; toUserId: string; subject: string; }>; export declare const BugReportQuestionSchema: z.ZodObject<{ question: z.ZodString; answer: z.ZodString; }, "strip", z.ZodTypeAny, { question: string; answer: string; }, { question: string; answer: string; }>; export declare const AppLogLineSchema: z.ZodObject<{ index: z.ZodNumber; text: z.ZodString; }, "strip", z.ZodTypeAny, { text: string; index: number; }, { text: string; index: number; }>; export declare const CreateBugReportRequestBodySchema: z.ZodObject<{ questions: z.ZodArray, "many">; message: z.ZodString; media_urls: z.ZodArray; debugInfo: z.ZodRecord; }, "strip", z.ZodTypeAny, { message: string; questions: { question: string; answer: string; }[]; media_urls: string[]; debugInfo: Record; }, { message: string; questions: { question: string; answer: string; }[]; media_urls: string[]; debugInfo: Record; }>; export declare const putTrainerWorkoutTemplateIndicesSchema: z.ZodObject<{ indices: z.ZodRecord; }, "strip", z.ZodTypeAny, { indices: Record; }, { indices: Record; }>;