import { HTMLEditor } from '../../../core/HTMLEditor.ts'; export declare class LinkMenu { private popup; private callback; private url; private anchor; private title; private nofollowCheckbox; private targetBlankCheckbox; constructor(editor: HTMLEditor); private handleSubmit; show(callback: (linkData: LinkData) => void, initialData?: Partial): void; } interface LinkData { url: string; anchor: string; title: string; nofollow: boolean; targetBlank: boolean; } export {};