/** * Zod schema for the kind-loop prompt arguments. * * MCP prompt arguments are always strings at the protocol level. * Optional fields default to sensible values in the prompt builder. */ export declare const localKindDevLoopSchema: { readonly namespace: import("zod").ZodOptional; readonly imageName: import("zod").ZodOptional; }; export type LocalKindDevLoopArgs = { namespace?: string | undefined; imageName?: string | undefined; }; //# sourceMappingURL=schema.d.ts.map