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