import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ComputePriceRange, ComputePriceRange$Outbound } from "./computepricerange.js"; import { ComputeProviderQuote, ComputeProviderQuote$Outbound } from "./computeproviderquote.js"; export type PriceBreakdownUsdHr = { compute: ComputePriceRange; volume: ComputePriceRange; }; export type ComputeQuote = { available: boolean; expiresAt: Date | null; observedAt: Date; priceBreakdownUsdHr?: PriceBreakdownUsdHr | undefined; priceUsdHr: ComputePriceRange | null; providers?: Array | undefined; }; /** @internal */ export declare const PriceBreakdownUsdHr$inboundSchema: z.ZodType; /** @internal */ export type PriceBreakdownUsdHr$Outbound = { compute: ComputePriceRange$Outbound; volume: ComputePriceRange$Outbound; }; /** @internal */ export declare const PriceBreakdownUsdHr$outboundSchema: z.ZodType; export declare function priceBreakdownUsdHrToJSON(priceBreakdownUsdHr: PriceBreakdownUsdHr): string; export declare function priceBreakdownUsdHrFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ComputeQuote$inboundSchema: z.ZodType; /** @internal */ export type ComputeQuote$Outbound = { available: boolean; expires_at: string | null; observed_at: string; price_breakdown_usd_hr?: PriceBreakdownUsdHr$Outbound | undefined; price_usd_hr: ComputePriceRange$Outbound | null; providers?: Array | undefined; }; /** @internal */ export declare const ComputeQuote$outboundSchema: z.ZodType; export declare function computeQuoteToJSON(computeQuote: ComputeQuote): string; export declare function computeQuoteFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=computequote.d.ts.map