import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CustomFieldValueHyperlink = { /** * Anchor text for hyperlink. */ urlAnchor?: string | undefined; /** * Link for this URL. */ urlLink?: string | undefined; }; /** @internal */ export declare const CustomFieldValueHyperlink$inboundSchema: z.ZodType; /** @internal */ export type CustomFieldValueHyperlink$Outbound = { urlAnchor?: string | undefined; urlLink?: string | undefined; }; /** @internal */ export declare const CustomFieldValueHyperlink$outboundSchema: z.ZodType; export declare function customFieldValueHyperlinkToJSON(customFieldValueHyperlink: CustomFieldValueHyperlink): string; export declare function customFieldValueHyperlinkFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customfieldvaluehyperlink.d.ts.map