import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type HalRef = { /** * Uri hypertext reference. */ href?: string | undefined; }; /** @internal */ export declare const HalRef$inboundSchema: z.ZodType; export declare function halRefFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=halref.d.ts.map