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 ListServicesRequest = { state?: components.ComputeResourceState | undefined; cursor?: string | undefined; limit?: number | undefined; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; export type ListServicesResponse = components.ComputeServiceList | components.ComputeErrorEnvelope; /** @internal */ export declare const ListServicesRequest$inboundSchema: z.ZodType; /** @internal */ export type ListServicesRequest$Outbound = { state?: string | undefined; cursor?: string | undefined; limit: number; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const ListServicesRequest$outboundSchema: z.ZodType; export declare function listServicesRequestToJSON(listServicesRequest: ListServicesRequest): string; export declare function listServicesRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ListServicesResponse$inboundSchema: z.ZodType; /** @internal */ export type ListServicesResponse$Outbound = components.ComputeServiceList$Outbound | components.ComputeErrorEnvelope$Outbound; /** @internal */ export declare const ListServicesResponse$outboundSchema: z.ZodType; export declare function listServicesResponseToJSON(listServicesResponse: ListServicesResponse): string; export declare function listServicesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listservices.d.ts.map