import { z } from "zod/v4"; export declare const PromptDomainSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; version: z.ZodNumber; createdAt: z.ZodDate; updatedAt: z.ZodDate; createdBy: z.ZodString; isActive: z.ZodNullable; type: z.ZodDefault; tags: z.ZodDefault>; labels: z.ZodDefault>; prompt: z.ZodType>; config: z.ZodType>; projectId: z.ZodString; commitMessage: z.ZodNullable; }, z.core.$strip>; export type PromptDomain = z.infer; //# sourceMappingURL=prompts.d.ts.map