import { EventEmitter } from '@angular/core'; import { ToggleData } from './slide-toggle.model'; /** * The component that represent a group of toggles. */ export declare class SlideToggleGroupComponent { /** * An array of toggle objects. */ data: Array; /** * An array of labels for `data` input. */ labels: Array; /** * Event indicanting the check state change of all toggles. */ selecteds: EventEmitter; constructor(); /** * public toggleChange - updates and emit changes due to toggle changes * * @param cod the toggle that have changed * @param checked the new state for the specified toggle */ toggleChange(cod: string, checked: boolean): void; private propagateChanges; }