import * as z from "zod"; export type DialogCommand = { thoughts?: string | undefined; /** * unique identifier to this step, used for step cache */ id: string; type?: "DIALOG" | undefined; action?: "ACCEPT" | undefined; }; /** @internal */ export declare const DialogCommand$inboundSchema: z.ZodType; /** @internal */ export type DialogCommand$Outbound = { thoughts?: string | undefined; id: string; type: "DIALOG"; action: "ACCEPT"; }; /** @internal */ export declare const DialogCommand$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace DialogCommand$ { /** @deprecated use `DialogCommand$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `DialogCommand$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `DialogCommand$Outbound` instead. */ type Outbound = DialogCommand$Outbound; } //# sourceMappingURL=dialogcommand.d.ts.map