import * as z from "zod"; export type AIActionDynamic = { /** * 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_DYNAMIC" | undefined; text: string; }; /** @internal */ export declare const AIActionDynamic$inboundSchema: z.ZodType; /** @internal */ export type AIActionDynamic$Outbound = { index?: number | undefined; id: string; skipped?: boolean | undefined; envKey?: string | undefined; type: "AI_ACTION_DYNAMIC"; text: string; }; /** @internal */ export declare const AIActionDynamic$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 AIActionDynamic$ { /** @deprecated use `AIActionDynamic$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AIActionDynamic$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AIActionDynamic$Outbound` instead. */ type Outbound = AIActionDynamic$Outbound; } //# sourceMappingURL=aiactiondynamic.d.ts.map