/** * Zod schema for the aks-loop prompt arguments. * * MCP prompt arguments are always strings at the protocol level. * Optional fields default to sensible values in the prompt builder; * required fields (registry, resourceGroup, clusterName) must be provided. */ import { z } from 'zod'; export declare const aksRemoteDevLoopSchema: { readonly registry: z.ZodString; readonly resourceGroup: z.ZodString; readonly clusterName: z.ZodString; readonly namespace: z.ZodOptional; readonly imageName: z.ZodOptional; }; export type AksRemoteDevLoopArgs = { namespace?: string | undefined; imageName?: string | undefined; registry: string; resourceGroup: string; clusterName: string; }; //# sourceMappingURL=schema.d.ts.map