import { EventEmitter, ElementRef, OnDestroy } from "@angular/core"; import { IdService } from "../../shared/services/id.service"; export declare class ButtonToggleInnerComponent implements OnDestroy { private idService; id: string; selected: string; disabled: boolean; name: string; value: string; label: string; change: EventEmitter<{}>; control: ElementRef; constructor(idService: IdService); ngOnDestroy(): void; updateSelected(event: any): void; isChecked(): boolean; removeFocus(): void; }