import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SearchResultLink = { href: string; type: string; }; /** @internal */ export declare const SearchResultLink$inboundSchema: z.ZodType; /** @internal */ export type SearchResultLink$Outbound = { href: string; type: string; }; /** @internal */ export declare const SearchResultLink$outboundSchema: z.ZodType; export declare function searchResultLinkToJSON(searchResultLink: SearchResultLink): string; export declare function searchResultLinkFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=searchresultlink.d.ts.map