import { OnInit } from '@angular/core'; import { NgxExcelComponent } from '../ngx-excel/ngx-excel.component'; import { NgxExcelActionScope, NgxExcelContextChanged, NgxExcelContextMenuClickedEvent } from '../../models/models'; import { Observable } from 'rxjs'; export declare class NgxExcelContextActionComponent implements OnInit { protected excelComponent: NgxExcelComponent; private _invisible; private _disabled; private _prefix; label: string; action: string; icon: string; scope: NgxExcelActionScope; execute: (payload: NgxExcelContextMenuClickedEvent) => Observable | void; invisible: boolean; disabled: boolean; prefix: boolean; constructor(excelComponent: NgxExcelComponent); ngOnInit(): void; }