import { EventEmitter } from '@angular/core'; /** * The component that represent a single toggle. */ export declare class SlideToggleComponent { /** * The toggle check state. */ checked: boolean; /** * The toggle color when checked. */ color: string; /** * The toggle class to be customized. */ cssClass: string; /** * The toggle disable state. */ disabled: boolean; /** * The toggle identifier. */ id: string; /** * The toggle text. */ title: string; /** * Event indicanting the check state change. Usually when the user click it. */ toggleChange: EventEmitter; /** * public changeChecked - called when the toggle button is clicked * */ changeChecked(): void; }