export declare enum PresentationMode { PRIMARY = "primary", SECONDARY = "secondary", SINGLE_TASKBAR = "singleTaskbar" } export declare enum DataExporterOption { EXPORT_TO_PDF = "exportToPDF", EXPORT_TO_XLS = "exportToXLS", EXPORT_CURRENT_PAGE = "exportCurrentPage", EXPORT_ALL_RECORDS = "exportAllRecords", EXPORT_PAGE_TO_PDF = "exportPageToPDF", EXPORT_PAGE_TO_XLS = "exportPageToXLS", EXPORT_ALL_RECORDS_TO_PDF = "exportAllRecordsToPDF", EXPORT_ALL_RECORDS_TO_XLS = "exportAllRecordsToXLS", EXPORT_BY_EMAIL = "exportToEmail", EXPORT_PDF_TO_EMAIL = "exportPDFToEmail", EXPORT_XLS_TO_EMAIL = "exportXLSToEmail" } export declare enum DataExporterFormat { PDF = "exportPDFToEmail", XLS = "exportXLSToEmail", XLSX = "exportXLSToEmail" } export declare enum DataExporterType { EXPORT_TO_PDF = "PDF", EXPORT_TO_XLS = "XLS", EXPORT_PAGE_TO_PDF = "PDF", EXPORT_PAGE_TO_XLS = "XLS", EXPORT_ALL_RECORDS_TO_PDF = "PDF", EXPORT_ALL_RECORDS_TO_XLS = "XLS", EXPORT_PDF_TO_EMAIL = "PDF", EXPORT_XLS_TO_EMAIL = "XLS" } export declare enum ExporterStrategy { SERVER_SIDE = "ServerSideExporterStrategy", CLIENT_SIDE = "ClientSideExporterStrategy" }