import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SandboxPriceRate = { perHour?: number | undefined; perGibHour?: number | undefined; }; /** @internal */ export declare const SandboxPriceRate$inboundSchema: z.ZodType; /** @internal */ export type SandboxPriceRate$Outbound = { per_hour: number; per_gib_hour: number; }; /** @internal */ export declare const SandboxPriceRate$outboundSchema: z.ZodType; export declare function sandboxPriceRateToJSON(sandboxPriceRate: SandboxPriceRate): string; export declare function sandboxPriceRateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sandboxpricerate.d.ts.map