import * as z from "zod"; export type AIExtractCommand = { thoughts?: string | undefined; /** * unique identifier to this step, used for step cache */ id: string; type?: "AI_EXTRACT" | undefined; goal: string; schema?: string | undefined; envKey?: string | undefined; disableCache?: boolean | undefined; iframeUrl?: string | undefined; }; /** @internal */ export declare const AIExtractCommand$inboundSchema: z.ZodType; /** @internal */ export type AIExtractCommand$Outbound = { thoughts?: string | undefined; id: string; type: "AI_EXTRACT"; goal: string; schema?: string | undefined; envKey?: string | undefined; disableCache?: boolean | undefined; iframeUrl?: string | undefined; }; /** @internal */ export declare const AIExtractCommand$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 AIExtractCommand$ { /** @deprecated use `AIExtractCommand$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AIExtractCommand$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AIExtractCommand$Outbound` instead. */ type Outbound = AIExtractCommand$Outbound; } //# sourceMappingURL=aiextractcommand.d.ts.map