import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Host } from "./host.js"; import { MatchedService } from "./matchedservice.js"; export type HostAssetWithMatchedServices = { extensions: { [k: string]: any; }; /** * The host services that match the query. */ matchedServices?: Array | null | undefined; resource: Host; }; /** @internal */ export declare const HostAssetWithMatchedServices$inboundSchema: z.ZodType; export declare function hostAssetWithMatchedServicesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=hostassetwithmatchedservices.d.ts.map