import { LitElement } from 'lit'; import './lit-icon.js'; export declare class LitFilterInput extends LitElement { value: string; placeholder?: string; onChange?: (value: string) => void; private handleInput; private handleClear; static styles: import("lit").CSSResult; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'lit-filter-input': LitFilterInput; } }