import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { IconConfig } from "./iconconfig.js"; /** * The display configuration for a link. */ export type StructuredLink = { /** * The display name for the link */ name?: string | undefined; /** * The URL for the link. */ url?: string | undefined; /** * Defines how to render an icon */ iconConfig?: IconConfig | undefined; }; /** @internal */ export declare const StructuredLink$inboundSchema: z.ZodType; export declare function structuredLinkFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=structuredlink.d.ts.map