import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const MemoryLimit: { readonly Oneg: "1g"; readonly Fourg: "4g"; readonly Sixteeng: "16g"; readonly SixtyFourg: "64g"; }; export type MemoryLimit = ClosedEnum; export type CodeInterpreterContainerAuto = { type: "auto"; fileIds?: Array | null | undefined; memoryLimit?: MemoryLimit | null | undefined; }; /** @internal */ export declare const MemoryLimit$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const MemoryLimit$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const CodeInterpreterContainerAuto$inboundSchema: z.ZodType; /** @internal */ export type CodeInterpreterContainerAuto$Outbound = { type: "auto"; file_ids?: Array | null | undefined; memory_limit?: string | null | undefined; }; /** @internal */ export declare const CodeInterpreterContainerAuto$outboundSchema: z.ZodType; export declare function codeInterpreterContainerAutoToJSON(codeInterpreterContainerAuto: CodeInterpreterContainerAuto): string; export declare function codeInterpreterContainerAutoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=codeinterpretercontainerauto.d.ts.map