import { LithiumInput } from 'lithium-ui/input'; /** * Input, standard textarea with accessibility and error enhancements. * * @noInheritDoc * @element li-datalist * @slot default - Content slot for modal body * @cssprop --color * @cssprop --color-error * @cssprop --background * @cssprop --background-disabled * @cssprop --border-color * @cssprop --border-radius */ export declare class LithiumDatalist extends LithiumInput { /** Set input in an error state */ error: boolean; private listId; private datalist; connectedCallback(): void; } declare global { interface HTMLElementTagNameMap { 'li-datalist': LithiumDatalist; } }