import { EventEmitter } from '@angular/core'; import { LaCheckboxGroupOptionInterface } from '../checkbox-group/la-checkbox-group-option.interface'; import { LaRadioGroupOptionInterface } from '../radio-group/la-radio-group-option.interface'; /** * @group Filter Buttons * @component Filter Button * @description Filter Button */ export declare class LaFilterButtonComponent { option: LaCheckboxGroupOptionInterface | LaRadioGroupOptionInterface; onSelected: EventEmitter; onDeselected: EventEmitter; private _isDisabled; private _value; private _selectedValue; propagateChange: Function; isActive: boolean; onChange: any; onTouched: any; onClick(): void; /** * true - to make button disabled. false - by default */ isDisabled: boolean; value: string; }