import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const Interconnect: { readonly Pcie: "pcie"; readonly Nvlink: "nvlink"; readonly InfinityFabric: "infinity_fabric"; }; export type Interconnect = ClosedEnum; export type ListComputeOffersRequest = { accelerator?: string | undefined; gpuCount?: number | undefined; interconnect?: Interconnect | undefined; provider?: string | undefined; region?: string | undefined; available?: boolean | undefined; cursor?: string | undefined; limit?: number | undefined; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; export type ListComputeOffersResponse = components.ComputeOfferList | components.ComputeErrorEnvelope; /** @internal */ export declare const Interconnect$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Interconnect$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ListComputeOffersRequest$inboundSchema: z.ZodType; /** @internal */ export type ListComputeOffersRequest$Outbound = { accelerator?: string | undefined; gpu_count?: number | undefined; interconnect?: string | undefined; provider?: string | undefined; region?: string | undefined; available?: boolean | undefined; cursor?: string | undefined; limit: number; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const ListComputeOffersRequest$outboundSchema: z.ZodType; export declare function listComputeOffersRequestToJSON(listComputeOffersRequest: ListComputeOffersRequest): string; export declare function listComputeOffersRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ListComputeOffersResponse$inboundSchema: z.ZodType; /** @internal */ export type ListComputeOffersResponse$Outbound = components.ComputeOfferList$Outbound | components.ComputeErrorEnvelope$Outbound; /** @internal */ export declare const ListComputeOffersResponse$outboundSchema: z.ZodType; export declare function listComputeOffersResponseToJSON(listComputeOffersResponse: ListComputeOffersResponse): string; export declare function listComputeOffersResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listcomputeoffers.d.ts.map