import { EventEmitter } from '../../stencil-public-runtime'; export declare class Switch { switchId: string; labelId: string; input: HTMLInputElement; hasFocus: boolean; name: string; value: string; disabled: boolean; required: boolean; checked: boolean; invalid: boolean; handleCheckedChange(): void; slBlur: EventEmitter; checkedChange: EventEmitter; slFocus: EventEmitter; connectedCallback(): void; setFocus(options?: FocusOptions): Promise; removeFocus(): Promise; reportValidity(): Promise; setCustomValidity(message: string): Promise; handleClick(): void; handleBlur(): void; handleFocus(): void; handleKeyDown(event: KeyboardEvent): void; handleMouseDown(event: MouseEvent): void; render(): any; }