import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ComputeOffer, ComputeOffer$Outbound } from "./computeoffer.js"; export type ComputeOfferList = { nextCursor: string | null; total: number; data: Array; }; /** @internal */ export declare const ComputeOfferList$inboundSchema: z.ZodType; /** @internal */ export type ComputeOfferList$Outbound = { next_cursor: string | null; total: number; data: Array; }; /** @internal */ export declare const ComputeOfferList$outboundSchema: z.ZodType; export declare function computeOfferListToJSON(computeOfferList: ComputeOfferList): string; export declare function computeOfferListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=computeofferlist.d.ts.map