// ag-grid-iux-enterprise v1.0.0 import { BaseCreator, BaseGridSerializingSession, Column, ColumnController, ExcelCell, ExcelExportParams, ExcelStyle, GridOptionsWrapper, IExcelCreator, ProcessCellForExportParams, ProcessHeaderForExportParams, RowAccumulator, RowNode, RowSpanningAccumulator, RowType, ValueService } from "ag-grid-iux-community"; import { ExcelXmlFactory } from "./excelXmlFactory"; export interface ExcelMixedStyle { key: string; excelID: string; result: ExcelStyle; } export declare class ExcelGridSerializingSession extends BaseGridSerializingSession { private excelXmlFactory; private styleLinker; private stylesByIds; private mixedStyles; private mixedStyleCounter; private excelStyles; private customHeader; private customFooter; private sheetName; private suppressTextAsCDATA; constructor(columnController: ColumnController, valueService: ValueService, gridOptionsWrapper: GridOptionsWrapper, processCellCallback: (params: ProcessCellForExportParams) => string, processHeaderCallback: (params: ProcessHeaderForExportParams) => string, sheetName: string, excelXmlFactory: ExcelXmlFactory, baseExcelStyles: ExcelStyle[], styleLinker: (rowType: RowType, rowIndex: number, colIndex: number, value: string, column: Column, node: RowNode) => string[], suppressTextAsCDATA: boolean); private rows; private cols; addCustomHeader(customHeader: ExcelCell[][]): void; addCustomFooter(customFooter: ExcelCell[][]): void; prepare(columnsToExport: Column[]): void; onNewHeaderGroupingRow(): RowSpanningAccumulator; onNewHeaderRow(): RowAccumulator; onNewBodyRow(): RowAccumulator; onNewRow(onNewColumnAccumulator: (rowIndex: number, currentCells: ExcelCell[]) => (column: Column, index: number, node?: RowNode) => void): RowAccumulator; onNewHeaderColumn(rowIndex: number, currentCells: ExcelCell[]): (column: Column, index: number, node?: RowNode) => void; parse(): string; onNewBodyColumn(rowIndex: number, currentCells: ExcelCell[]): (column: Column, index: number, node?: RowNode) => void; addNewMixedStyle(styleIds: string[]): void; private styleExists; private createCell; private createMergedCell; } export declare class ExcelCreator extends BaseCreator implements IExcelCreator { private excelXmlFactory; private columnController; private valueService; private gridOptions; private stylingService; private downloader; private gridSerializer; gridOptionsWrapper: GridOptionsWrapper; postConstruct(): void; exportDataAsExcel(params?: ExcelExportParams): string; getDataAsExcelXml(params?: ExcelExportParams): string; getMimeType(): string; getDefaultFileName(): string; getDefaultFileExtension(): string; createSerializingSession(params?: ExcelExportParams): ExcelGridSerializingSession; private styleLinker; isExportSuppressed(): boolean; }