import { MjoSwitchBlurEvent, MjoSwitchChangeEvent, MjoSwitchColor, MjoSwitchFocusEvent, MjoSwitchSize } from "./types/mjo-switch.js"; import { LitElement } from "lit"; import { type IFormMixin } from "./mixins/form-mixin.js"; import { type IInputErrorMixin } from "./mixins/input-error.js"; import { type IThemeMixin } from "./mixins/theme-mixin.js"; import "./components/input/mjoint-input-helper-text.js"; import "./components/input/mjoint-input-label.js"; import "./mjo-icon.js"; declare const MjoSwitch_base: import("./types/mixins.js").MixinConstructor & import("./types/mixins.js").MixinConstructor & import("./types/mixins.js").MixinConstructor & typeof LitElement; export declare class MjoSwitch extends MjoSwitch_base implements IThemeMixin, IInputErrorMixin, IFormMixin { #private; color: MjoSwitchColor; size: MjoSwitchSize; checked: boolean; disabled: boolean; helperText?: string; label?: string; name?: string; value: string; checkgroup?: string; hideErrors: boolean; ariaDescribedby?: string; inputElement: HTMLInputElement; switchContainer: HTMLDivElement; type: string; private get computedAriaChecked(); private get computedAriaLabel(); private get computedTabIndex(); render(): import("lit-html").TemplateResult<1>; connectedCallback(): void; getValue(): string; setValue(value: string): void; toggle(): void; focus(): void; blur(): void; reportValidity(): boolean; setCustomValidity(message: string): void; static styles: import("lit").CSSResult[]; } declare global { interface HTMLElementTagNameMap { "mjo-switch": MjoSwitch; } interface HTMLElementEventMap { "mjo-switch:change": MjoSwitchChangeEvent; "mjo-switch:focus": MjoSwitchFocusEvent; "mjo-switch:blur": MjoSwitchBlurEvent; } } export {}; //# sourceMappingURL=mjo-switch.d.ts.map