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