import { EventEmitter } from '../../stencil-public-runtime'; import { IconPack } from '../../lib/icons'; import { DyteI18n } from '../../lib/lang'; /** * A switch component which follows Dyte's Design System. */ export declare class DyteSwitch { /** Whether the switch is enabled/checked */ checked: boolean; /** Whether switch is readonly */ readonly: boolean; /** Whether switch is readonly */ disabled: boolean; /** Event when switch value is changed */ dyteChange: EventEmitter; /** Icon pack */ iconPack: IconPack; /** Language */ t: DyteI18n; connectedCallback(): void; private onClick; private onKeyPress; checkedChange(checked: boolean): void; render(): any; }