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