@progress/kendo-react-excel-export
Version:
React Excel export helps you export and save data to Excel files and customize or filter the output. KendoReact Excel Export package
28 lines (27 loc) • 986 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { ExcelExportColumnProps } from '../ExcelExportColumn.js';
import * as React from 'react';
/**
* Represents the props that will be passed to the ExcelExportFooter component when the template is rendered.
*/
export interface ExcelExportFooterProps {
/**
* The column configuration object for the current column.
*/
column: ExcelExportColumnProps;
/**
* The index of the current column within the grid.
*/
columnIndex: number;
}
/**
* Represents the footer of column.
*/
export declare class ExcelExportFooter extends React.PureComponent<ExcelExportFooterProps> {
}