@progress/kendo-react-spreadsheet
Version:
KendoReact Spreadsheet package
19 lines (18 loc) • 701 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 { SpreadsheetToolProps } from './utils.js';
import * as React from 'react';
/**
* The props of the ExcelExport tool component.
*/
export interface ExcelExportProps extends SpreadsheetToolProps {
}
/**
* The ExcelExport tool component.
*/
export declare const ExcelExport: React.FunctionComponent<ExcelExportProps>;