import { BaseXform } from "../base-xform.js"; interface HyperlinkModel { address: string; rId?: string; tooltip?: string; target?: string; } declare class HyperlinkXform extends BaseXform { get tag(): string; render(xmlStream: any, model: HyperlinkModel): void; parseOpen(node: any): boolean; parseText(): void; parseClose(): boolean; } /** * Internal hyperlinks start with "#" (e.g. "#Sheet2!A1"). * This matches Excel's convention and the OOXML spec where internal links * use the `location` attribute instead of a relationship. */ declare function isInternalLink(target: string): boolean; export { HyperlinkXform, isInternalLink };