import * as React from 'react'; import { BoxProps } from '../Box/index'; export interface ToolbarProps {} type divProps = Omit; export interface ToolbarExtendedProps extends BoxProps, ToolbarProps, divProps {} declare const Toolbar: React.FC; export { Toolbar };