import * as React from 'react'; interface ToolBarProps { style?: React.CSSProperties; children: any; } export default function ToolBar(props: ToolBarProps): JSX.Element; export {};