import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ServiceOnHostRange } from "./serviceonhostrange.js"; export type ServicesOnHostResponse = { /** * A token that can be used to retrieve the next page of ranges. */ nextPageToken: string; /** * The list of requested services. */ ranges: Array | null; }; /** @internal */ export declare const ServicesOnHostResponse$inboundSchema: z.ZodType; export declare function servicesOnHostResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=servicesonhostresponse.d.ts.map