import { TemplateResult, CSSResultArray } from 'lit'; import NileElement from '../../internal/nile-element'; /** * Floating bookmark-insert panel: name an in-text anchor. Emits * `wysiwyg-bookmark-apply` detail: { id } and `wysiwyg-bookmark-cancel`. */ export declare class NileWysiwygBookmarkPanel extends NileElement { open: boolean; private error; nameInput?: HTMLInputElement; static get styles(): CSSResultArray; focusInput(): void; private handleSubmit; render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'nile-wysiwyg-bookmark-panel': NileWysiwygBookmarkPanel; } }