import React, { ReactNode } from 'react'; import type { ToolkitItem } from './constants'; export interface ToolBarProps { /** * actions on the right side of the toolbar */ actions?: ReactNode[]; /** * built-in toolkit on the right side of the toolbar */ toolkitList?: ToolkitItem[]; } /** * react component rendering toolbar */ export declare const Toolbar: React.NamedExoticComponent;