import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ShellEnvironmentContainerAuto, ShellEnvironmentContainerAuto$Outbound } from "./shellenvironmentcontainerauto.js"; import { ShellEnvironmentContainerReference, ShellEnvironmentContainerReference$Outbound } from "./shellenvironmentcontainerreference.js"; export type ShellEnvironment = ShellEnvironmentContainerAuto | ShellEnvironmentContainerReference; /** @internal */ export declare const ShellEnvironment$inboundSchema: z.ZodType; /** @internal */ export type ShellEnvironment$Outbound = ShellEnvironmentContainerAuto$Outbound | ShellEnvironmentContainerReference$Outbound; /** @internal */ export declare const ShellEnvironment$outboundSchema: z.ZodType; export declare function shellEnvironmentToJSON(shellEnvironment: ShellEnvironment): string; export declare function shellEnvironmentFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=shellenvironment.d.ts.map