import { TemplateResult, CSSResultArray } from 'lit'; import NileElement from '../../internal/nile-element'; /** * Find & replace bar pinned to the top-right of the editor. Emits: * - `wysiwyg-find` detail: { query } * - `wysiwyg-find-step` detail: { direction: 'next' | 'prev' } * - `wysiwyg-replace` detail: { value } * - `wysiwyg-replace-all` detail: { value } * - `wysiwyg-find-close` */ export declare class NileWysiwygFindBar extends NileElement { open: boolean; matchCount: number; activeIndex: number; queryInput?: HTMLInputElement; replaceInput?: HTMLInputElement; static get styles(): CSSResultArray; focusInput(): void; private handleKeydown; render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'nile-wysiwyg-find-bar': NileWysiwygFindBar; } }