import { OnInit } from '@angular/core'; import { IListItemOption } from '../../../constants/interface/i-list-item-option'; import { IListItem } from '../../../constants/interface/i-list-item'; import * as i0 from "@angular/core"; export declare class TqlActionDrawerComponent implements OnInit { width: number; isResizable: boolean; _leftActions: IListItem[]; set leftActions(v: IListItem[]); _rightActions: IListItem[]; set rightActions(v: IListItem[]); headingClass: string; moreAction: IListItemOption; constructor(); ngOnInit(): void; triggerAction(item: IListItem): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare namespace TqlActionDrawerComponent { enum ENUM_ACTIONS { REFRESH = "REFRESH", SEARCH = "SEARCH", COLLAPSE_ALL = "COLLAPSE_ALL", EXPAND_ALL = "EXPAND_ALL" } const ACTION_ICONS: { [key in TqlActionDrawerComponent.ENUM_ACTIONS]: IListItem; }; }