import { EventEmitter } from '@angular/core'; /** * @group Icon Button * @component Icon Button * @description Icon Button */ export declare class LaIconButtonComponent { clicked: EventEmitter; private _isDisabled; /** * true - to make button disabled. false - by default */ isDisabled: boolean; private _isHover; /** * To apply hovered style to a button. only used in style guide */ isHover: boolean; private _isActive; /** * To apply active style to a button. Used in sidebar or nav components to show active state */ isActive: boolean; onClick(): void; }