import { LithiumInput } from 'lithium-ui/input'; /** * Input, standard select input with accessibility and error enhancements. * * @element li-select * @slot default - Content slot select input * @cssprop --color * @cssprop --color-error * @cssprop --background * @cssprop --background-disabled * @cssprop --border-color * @cssprop --border-radius */ export declare class LithiumSelect extends LithiumInput { /** Set input in an error state */ error: boolean; } declare global { interface HTMLElementTagNameMap { 'li-select': LithiumSelect; } }