@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
19 lines (18 loc) • 755 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 { ColumnBase } from './ColumnBase';
import * as React from 'react';
export interface ExcelExportColumnGroupProps extends ColumnBase {
}
/**
* Represents the column group component of the KendoReact ExcelExport component.
*
* @returns null
*/
declare const ExcelExportColumnGroup: React.FunctionComponent<ExcelExportColumnGroupProps>;
export { ExcelExportColumnGroup };