import * as z from "zod"; export type AIWaitCommand = { thoughts?: string | undefined; /** * unique identifier to this step, used for step cache */ id: string; type?: "AI_WAIT" | undefined; assertion: string; disableCache?: boolean | undefined; iframeUrl?: string | undefined; contextChoice?: "MULTIMODAL" | undefined; /** * Max seconds to wait for assertion to be true */ timeout?: number | undefined; }; /** @internal */ export declare const AIWaitCommand$inboundSchema: z.ZodType; /** @internal */ export type AIWaitCommand$Outbound = { thoughts?: string | undefined; id: string; type: "AI_WAIT"; assertion: string; disableCache?: boolean | undefined; iframeUrl?: string | undefined; contextChoice: "MULTIMODAL"; timeout?: number | undefined; }; /** @internal */ export declare const AIWaitCommand$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 AIWaitCommand$ { /** @deprecated use `AIWaitCommand$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AIWaitCommand$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AIWaitCommand$Outbound` instead. */ type Outbound = AIWaitCommand$Outbound; } //# sourceMappingURL=aiwaitcommand.d.ts.map