@progress/kendo-react-spreadsheet
Version:
KendoReact Spreadsheet package
19 lines (18 loc) • 676 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 Format tool component.
*/
export interface FormatProps extends SpreadsheetToolProps {
}
/**
* The Format tool component.
*/
export declare const Format: React.FunctionComponent<FormatProps>;