import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ComputeLimits = { maxCostUsd?: number | undefined; maxRuntimeHours?: number | undefined; }; /** @internal */ export declare const ComputeLimits$inboundSchema: z.ZodType; /** @internal */ export type ComputeLimits$Outbound = { max_cost_usd?: number | undefined; max_runtime_hours?: number | undefined; }; /** @internal */ export declare const ComputeLimits$outboundSchema: z.ZodType; export declare function computeLimitsToJSON(computeLimits: ComputeLimits): string; export declare function computeLimitsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=computelimits.d.ts.map