import { HTMLProps } from 'react';
export type ToolbarWrapperProps = {
shouldShowContent?: boolean;
isVertical?: boolean;
} & HTMLProps;
export type ToolbarDividerProps = {
horizontal?: boolean;
} & HTMLProps;
export declare const Toolbar: {
Wrapper: import('react').ForwardRefExoticComponent & import('react').RefAttributes>;
Divider: import('react').ForwardRefExoticComponent & import('react').RefAttributes>;
};