import { EventEmitter } from '../../stencil-public-runtime'; export declare class RuxSwitch { switchId: string; el: HTMLRuxSwitchElement; /** * The help or explanation text */ helpText?: string; /** * The validation error text */ errorText?: string; /** * The switch name */ name: string; /** * The switch value */ value: string; /** * Toggles checked state of a switch */ checked: boolean; /** * Disables the switch via HTML disabled attribute. Switch takes on a distinct visual state. Cursor uses the not-allowed system replacement and all keyboard and mouse events are ignored. */ disabled: boolean; /** * Sets the switch as required */ required: boolean; /** * Fired when the value of the input changes - [HTMLElement/input_event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/input_event) */ ruxChange: EventEmitter; /** * Fired when an alteration to the input's value is committed by the user - [HTMLElement/change_event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/change_event) */ ruxInput: EventEmitter; componentWillLoad(): void; private onChange; private onInput; render(): any; }