import { OnInit } from '@angular/core'; import { XlsxExportService } from './service/xlsx-export.service'; import { MatSnackBar } from '@angular/material/snack-bar'; export declare class XlsxTableExportComponent implements OnInit { private xlsxExportService; private matSnackBar; data: T[]; fileName: string; headers: string[]; constructor(xlsxExportService: XlsxExportService, matSnackBar: MatSnackBar); ngOnInit(): void; eportToExcell(): void; }