import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CertificateAsset } from "./certificateasset.js"; import { HostAssetWithMatchedServices } from "./hostassetwithmatchedservices.js"; import { WebpropertyAsset } from "./webpropertyasset.js"; export type SearchQueryHit = { certificateV1?: CertificateAsset | undefined; hostV1?: HostAssetWithMatchedServices | undefined; webpropertyV1?: WebpropertyAsset | undefined; }; /** @internal */ export declare const SearchQueryHit$inboundSchema: z.ZodType; export declare function searchQueryHitFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=searchqueryhit.d.ts.map