UNPKG

389 BTypeScriptView Raw
1import { ComponentProps } from 'react';
2import { ToolBarControl } from './ToolBarControl';
3import { ContextNode, FCNoChildren, SelectionState } from '../../shared/types.d';
4declare type ToolBar = FCNoChildren<{
5 nodes: ContextNode[];
6 state: SelectionState;
7 setSelected: ComponentProps<typeof ToolBarControl>['setSelected'];
8}>;
9export declare const ToolBar: ToolBar;
10export {};