import type { HotInstance } from '../../../core/types'; import type { BaseUIOptions } from './_base'; import { BaseUI } from './_base'; /** * @private * @class LinkUI */ export declare class LinkUI extends BaseUI { #private; /** * Returns the default configuration options for the link UI component, including href, tag name, and tab index. */ static get DEFAULTS(): BaseUIOptions; /** * Initializes the link UI component with the Handsontable instance and merged configuration options. */ constructor(hotInstance: HotInstance, options: Record); /** * Build DOM structure. */ build(): void; /** * Update element. */ update(): void; /** * Focus element. */ focus(): void; /** * Activate the element. */ activate(): void; }