/** * Shared Zod schema fragments for loop prompt arguments. * * MCP prompt arguments are always strings at the protocol level. * Optional fields default to sensible values in the prompt builder. */ import { z } from 'zod'; /** Schema fields shared by all dev-loop prompts. */ export declare const sharedLoopSchema: { readonly namespace: z.ZodOptional; readonly imageName: z.ZodOptional; }; //# sourceMappingURL=schema.d.ts.map