import { OnDestroy, OnInit } from "@angular/core"; import { IdService } from "../shared/services/id.service"; import { FormControlBase } from "../shared/classes/form-control-base"; export declare class ButtonToggleComponent extends FormControlBase implements OnDestroy, OnInit { private idService; color: "primary" | "secondary" | "dark" | "light"; id: string; size: "large" | "medium" | "small"; wrapChildren: boolean; label: string; labelSrOnly: boolean; options: []; name: string; disabled: boolean; fullWidth: boolean; constructor(idService: IdService); ngOnInit(): void; classGen(): {}; ngOnDestroy(): void; toggleHandler(value: string): void; }