import { type TemplateResult } from "lit"; import { SuperInput } from "../../internal/super-input.js"; /** * {@linkcode Switch} renders a switch. * * @fires change - Fires when the switch is switched. * @category input */ declare class Switch extends SuperInput { set checked(v: boolean); get checked(): boolean; /** * Default checked state. */ default: boolean; /** * The current value of the switch component. Reflects the "checked" attribute. */ value: boolean; get observedRecord(): Record; protected render(): TemplateResult<1>; reset(): void; protected _connectedInit(): void; protected _handleChange(): void; } export default Switch; export { Switch };