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