import { EventEmitter, Renderer } from '@angular/core'; export declare class ButtonToggle { private renderer; model: boolean; cssClass: string; color: string; primary: string; secondary: string; type: string; btnType: string; styles: any; disabled: boolean; tapped: EventEmitter<{}>; modelChange: EventEmitter<{}>; action_btn: boolean; btn_class: string; click_state: string; hover: boolean; active: boolean; private container; private button; private last_styles; private base_class; constructor(renderer: Renderer); ngAfterViewInit(): void; setHover(state?: boolean): void; setActive(state?: boolean): void; ngOnChanges(changes: any): void; ngDoCheck(): void; clicked(): void; toggle(): void; private updateClasses(); }