import type { InlineToolConstructorOptions, SanitizerConfig } from '@editorjs/editorjs'; import type { MarkerData } from '../components/marker-modal/marker-modal.interfaces'; import { CuiMarkerTool } from './marker.tool'; export declare class CuiLinkMarker extends CuiMarkerTool { protected readonly TAG = "A"; static get sanitize(): SanitizerConfig; constructor(data: InlineToolConstructorOptions); render(): HTMLButtonElement; renderActions(): HTMLElement; wrapLink(range: Range, markerData: MarkerData): void; unwrap(): void; createElement(url?: string, text?: string): HTMLLinkElement; checkState(): void; private createLinkModal; }