import { EventEmitter } from '@angular/core'; import { LaColorService } from '../colors/la-color.service'; /** * @group Round Buttons * @component Round Button * @description Round Button with icon and text */ export declare class LaRoundButtonComponent { private _laColorService; private _isDisabled; private _isHover; private _size; private _colorName; bgColor: string; clicked: EventEmitter; constructor(_laColorService: LaColorService); onClick(): void; /** * true - to make button disabled. false - by default */ isDisabled: boolean; /** * To apply hovered style to a button. only used in style guide */ isHover: boolean; /** * size: to apply size into button */ size: string; /** * To apply color to button bg color. support only color palates color. */ color: string; }