import { LithiumCheckbox } from 'lithium-ui/checkbox'; /** * Switch, switch input with accessibility and error enhancements. * * @noInheritDoc * @element li-switch * @slot default - Content slot for checkbox input * @cssprop --color * @cssprop --color-disabled * @cssprop --border-color * @cssprop --background */ export declare class LithiumSwitch extends LithiumCheckbox { /** Set input in an error state */ error: boolean; static readonly styles: import("lit-element").CSSResult[]; render(): import("lit-element").TemplateResult; switch(): void; } declare global { interface HTMLElementTagNameMap { 'li-switch': LithiumSwitch; } }