import { LitElement } from 'lit'; export declare class EprDropDownSelect extends LitElement { labelText: string; inputValue: string; placeholderText: string; withoutLabel: boolean; displayPosition: string; options: string; static styles: import("lit").CSSResult[]; selectOption: (value: string) => void; private _showOptionsCSS; private _toggleOptions; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'epr-dropdown-select': EprDropDownSelect; } }