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