import { OnInit, EventEmitter } from '@angular/core'; import { ObjectValue, ObjectDetails } from './al-dropdown-filter.types'; export declare class AlDropdownFilterComponent implements OnInit { options: any; defaultWidth: string; /** * List of dashboard options */ filterOptions: ObjectValue[]; /** * Optional width setting */ dropDownWidth: string; /** * Event to fire dashboard object */ toggleView: EventEmitter; ngOnInit(): void; clickEvent(item: any): void; }