import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ListComputeProvidersRequest = { cursor?: string | undefined; limit?: number | undefined; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; export type ListComputeProvidersResponse = components.ComputeProviderHealthList | components.ComputeErrorEnvelope; /** @internal */ export declare const ListComputeProvidersRequest$inboundSchema: z.ZodType; /** @internal */ export type ListComputeProvidersRequest$Outbound = { cursor?: string | undefined; limit: number; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const ListComputeProvidersRequest$outboundSchema: z.ZodType; export declare function listComputeProvidersRequestToJSON(listComputeProvidersRequest: ListComputeProvidersRequest): string; export declare function listComputeProvidersRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ListComputeProvidersResponse$inboundSchema: z.ZodType; /** @internal */ export type ListComputeProvidersResponse$Outbound = components.ComputeProviderHealthList$Outbound | components.ComputeErrorEnvelope$Outbound; /** @internal */ export declare const ListComputeProvidersResponse$outboundSchema: z.ZodType; export declare function listComputeProvidersResponseToJSON(listComputeProvidersResponse: ListComputeProvidersResponse): string; export declare function listComputeProvidersResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listcomputeproviders.d.ts.map