import * as z from "zod"; export type JavaScriptCommand = { thoughts?: string | undefined; /** * unique identifier to this step, used for step cache */ id: string; code: string; fragment?: boolean | undefined; /** * default NODE */ environment?: "NODE" | undefined; /** * Max seconds for the code to complete */ timeout?: number | undefined; type?: "JAVASCRIPT" | undefined; envKey?: string | undefined; }; /** @internal */ export declare const JavaScriptCommand$inboundSchema: z.ZodType; /** @internal */ export type JavaScriptCommand$Outbound = { thoughts?: string | undefined; id: string; code: string; fragment?: boolean | undefined; environment: "NODE"; timeout?: number | undefined; type: "JAVASCRIPT"; envKey?: string | undefined; }; /** @internal */ export declare const JavaScriptCommand$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 JavaScriptCommand$ { /** @deprecated use `JavaScriptCommand$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `JavaScriptCommand$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `JavaScriptCommand$Outbound` instead. */ type Outbound = JavaScriptCommand$Outbound; } //# sourceMappingURL=javascriptcommand.d.ts.map