import * as z from "zod"; import { AIAction, AIAction$Outbound } from "./aiaction.js"; import { AIActionDynamic, AIActionDynamic$Outbound } from "./aiactiondynamic.js"; import { PresetAction, PresetAction$Outbound } from "./presetaction.js"; export type Steps = (PresetAction & { type: "PRESET_ACTION"; }) | (AIActionDynamic & { type: "AI_ACTION_DYNAMIC"; }) | (AIAction & { type: "AI_ACTION"; }); /** @internal */ export declare const Steps$inboundSchema: z.ZodType; /** @internal */ export type Steps$Outbound = (PresetAction$Outbound & { type: "PRESET_ACTION"; }) | (AIActionDynamic$Outbound & { type: "AI_ACTION_DYNAMIC"; }) | (AIAction$Outbound & { type: "AI_ACTION"; }); /** @internal */ export declare const Steps$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 Steps$ { /** @deprecated use `Steps$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Steps$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Steps$Outbound` instead. */ type Outbound = Steps$Outbound; } //# sourceMappingURL=steps.d.ts.map