/** Legacy single entry or multi-link array — XLSX round-trip uses the first link only. */ export declare function getFirstHyperlinkEntry(raw: unknown): { linkType: string; linkAddress: string; } | undefined; /** Plain text from `ct.s` — fast path when a single run (e.g. post-import normalization). */ export declare function concatInlineStrRunsText(runs: unknown[]): string; export type HyperlinkEntryLite = { linkType: string; linkAddress: string; }; /** * After Excel import: one `ct.s` run with link + typography; strip root/ct fc/un so the grid * reads styles from segments only (matches native hyperlink cells). */ export declare function normalizeImportedHyperlinkCellV(cellV: Record, hyperlink: HyperlinkEntryLite): void;