@progress/kendo-react-spreadsheet
Version:
KendoReact Spreadsheet package
18 lines (17 loc) • 640 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 { PropertyChangeToolProps } from './utils.js';
/**
* The props of the Bold tool component.
*/
export interface BoldProps extends PropertyChangeToolProps {
}
/**
* The Bold tool component.
*/
export declare const Bold: React.FunctionComponent<BoldProps>;