import { z } from 'zod'; export declare namespace DeleteTemplateCommand { const RequestSchema: z.ZodObject>; template: z.ZodEffects; buttons: z.ZodArray, "many">; }, "strip", z.ZodTypeAny, { link: string; buttons: { link: string; id: string; name: string; }[]; template: string; }, { buttons: { link: string; id: string; name: string; }[]; template: string; link?: string | undefined; }>; createdAt: z.ZodDate; updatedAt: z.ZodDate; }, "id">, "strip", z.ZodTypeAny, { id: number; }, { id: number; }>; type Request = z.infer; const ResponseSchema: z.ZodObject<{ isDeleted: z.ZodBoolean; }, "strip", z.ZodTypeAny, { isDeleted: boolean; }, { isDeleted: boolean; }>; type Response = z.infer; }