/** * Hyperlink support using OSC 8 * Port of github.com/muesli/termenv/hyperlink.go */ import type { Output } from './types.js'; /** * Creates a clickable hyperlink using OSC 8 escape sequences * @param link The URL to link to * @param name The display text for the link * @returns The formatted hyperlink string */ export declare function hyperlink(link: string, name: string): string; /** * Hyperlink functionality for Output instances */ export declare class HyperlinkControl { private output; constructor(output: Output); /** * Writes a hyperlink to the output * @param link The URL to link to * @param name The display text for the link * @returns This instance for chaining */ hyperlink(link: string, name: string): this; } //# sourceMappingURL=hyperlink.d.ts.map