import { z } from 'zod'; export declare namespace CreateMessageBotCommand { const RequestSchema: z.ZodObject>; template: z.ZodEffects; buttons: z.ZodArray, "many">; }, { isAdmin: z.ZodBoolean; }>, "strip", z.ZodTypeAny, { link: string; buttons: { link: string; id: string; name: string; }[]; template: string; isAdmin: boolean; }, { buttons: { link: string; id: string; name: string; }[]; template: string; isAdmin: boolean; link?: string | undefined; }>; type Request = z.infer; const RequestSchemaParam: z.ZodObject<{ botId: z.ZodEffects; }, "strip", z.ZodTypeAny, { botId: number; }, { botId?: unknown; }>; type RequestParam = z.infer; const ResponseSchema: z.ZodObject<{ isStarted: z.ZodBoolean; }, "strip", z.ZodTypeAny, { isStarted: boolean; }, { isStarted: boolean; }>; type Response = z.infer; }