import { EventEmitter } from "../../stencil-public-runtime"; export type SwirlSwitchLabelPosition = "start" | "end"; export declare class SwirlSwitch { el: HTMLElement; checked?: boolean; description?: string; disabled?: boolean; hideDescription?: boolean; hideLabel?: boolean; inputId: string; inputName: string; label?: string; labelPosition?: SwirlSwitchLabelPosition; value?: string; swirlAriaLabel?: string; valueChange: EventEmitter; private inputEl; /** * Toggle the switch state programmatically. */ toggle(): Promise; private onChange; render(): any; }