export declare class ExportService { private copyStyles; constructor(); /** * * @param tableName id of table to be exported * @param worksheet Name the Excel Worksheet * @param workbook Name Workbook * @param margins optional top, right, bottom, and left margins for export print in inches. */ toExcel(tableName: string, worksheet: string, workbook: string, margins?: string[]): void; private getTemplate; } export declare class ExportToExcelModule { }