/** * Create a clickable hyperlink using OSC 8 escape sequences. * Falls back to plain URL if the terminal doesn't support hyperlinks. * * @param url - The URL to link to * @param content - Optional content to display as the link text. * If provided and hyperlinks are supported, this text is shown as a clickable link. * If hyperlinks are not supported, content is ignored and only the URL is shown. */ export declare function createHyperlink(url: string, content?: string): string; //# sourceMappingURL=hyperlink.d.ts.map