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