import * as z from "zod"; import { PresetAction, PresetAction$Outbound } from "./presetaction.js"; export type AIAction = { /** * global index within a test (in-order traversal) */ index?: number | undefined; id: string; skipped?: boolean | undefined; /** * key in the environment to save the result of this step to */ envKey?: string | undefined; type?: "AI_ACTION" | undefined; text: string; steps?: Array | undefined; }; /** @internal */ export declare const AIAction$inboundSchema: z.ZodType; /** @internal */ export type AIAction$Outbound = { index?: number | undefined; id: string; skipped?: boolean | undefined; envKey?: string | undefined; type: "AI_ACTION"; text: string; steps?: Array | undefined; }; /** @internal */ export declare const AIAction$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 AIAction$ { /** @deprecated use `AIAction$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AIAction$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AIAction$Outbound` instead. */ type Outbound = AIAction$Outbound; } //# sourceMappingURL=aiaction.d.ts.map