import { TemplateResult, CSSResultArray } from 'lit'; import NileElement from '../../internal/nile-element'; import '../../nile-lite-tooltip/nile-lite-tooltip'; /** * Compact floating bar shown while the cursor is inside a table. The host * positions it; operations bubble up as `wysiwyg-command` events. */ export declare class NileWysiwygTableMenu extends NileElement { open: boolean; static get styles(): CSSResultArray; render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'nile-wysiwyg-table-menu': NileWysiwygTableMenu; } }