import type { HotInstance } from '../core/types'; /** * Initializes the built-in license notification: injects the product info message as the last * element of the bottom slot when the license is invalid, expired, or missing, and registers * a focus scope so keyboard navigation (Tab/Shift+Tab) includes the notification links. * Only runs for the root Handsontable instance. It is not a layout-slot contributor, so it cannot * be reordered, removed, or disabled by the user. * * @param {HotInstance} hotInstance The root Handsontable instance. * @returns {void} */ export declare function initLicenseNotification(hotInstance: HotInstance): void;