import * as z from "zod"; export type GoForwardCommand = { thoughts?: string | undefined; /** * unique identifier to this step, used for step cache */ id: string; type?: "GO_FORWARD" | undefined; }; /** @internal */ export declare const GoForwardCommand$inboundSchema: z.ZodType; /** @internal */ export type GoForwardCommand$Outbound = { thoughts?: string | undefined; id: string; type: "GO_FORWARD"; }; /** @internal */ export declare const GoForwardCommand$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 GoForwardCommand$ { /** @deprecated use `GoForwardCommand$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GoForwardCommand$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GoForwardCommand$Outbound` instead. */ type Outbound = GoForwardCommand$Outbound; } //# sourceMappingURL=goforwardcommand.d.ts.map