/** Prompt-template listing, render and mutation ack schemas. */ import { z } from 'zod'; export declare const templateNames: z.ZodArray; export declare const templateDetail: z.ZodObject<{ template: z.ZodString; schema: z.ZodRecord; }, z.core.$strip>; export declare const templateUploaded: z.ZodObject<{ path: z.ZodString; uploaded: z.ZodLiteral; }, z.core.$strip>; export declare const templateDeleted: z.ZodObject<{ path: z.ZodString; deleted: z.ZodLiteral; }, z.core.$strip>; export declare const templateDirDeleted: z.ZodObject<{ path: z.ZodString; deleted: z.ZodLiteral; }, z.core.$strip>; export declare const templateRendered: z.ZodObject<{ rendered: z.ZodString; }, z.core.$strip>; export declare const templateCacheCleared: z.ZodObject<{ cleared: z.ZodLiteral; }, z.core.$strip>; //# sourceMappingURL=templates.d.ts.map