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