import { HTMLAttributes } from 'react'; export interface ToolbarProps extends HTMLAttributes { orientation?: 'horizontal' | 'vertical'; } export declare function Toolbar({ orientation, className, ...props }: ToolbarProps): import("react").JSX.Element;