import type { ContextToolbar } from './context.js'; import type { Toolbar } from './toolbar.js'; export interface HintOptions { readonly toolbar: Toolbar; readonly context?: ContextToolbar; readonly root: HTMLElement; readonly surface?: HTMLElement; readonly tapMs?: number; } export interface Hints { active(): boolean; hide(): void; unmount(): void; } export declare function mountHints(options: HintOptions): Hints; //# sourceMappingURL=hints.d.ts.map