import { IDataTable } from '../types/index'; export interface IExportData { rows: T[]; columns: IDataTable.Column[]; groups?: IDataTable.Group[]; filename?: string; title?: string; getLocalizedText?: (text: string, params?: IDataTable.GenericRecord) => string; paginationData?: IDataTable.Pagination; serialNumber?: boolean; } declare class ExportManager { static exportToCSV(config: IExportData, dateTimeStamp?: boolean): void; static exportToPDF(config: IExportData, dateTimeStamp?: boolean): Promise; private static getExportData; private static getFormattedRows; private static getCleanTextValue; } export default ExportManager;