import React, { FC } from 'react'; export interface PropsType { /** Direction of the toolbar, defaults to horizontal */ direction?: 'vertical' | 'horizontal'; } declare const Toolbar: FC>; export default Toolbar;