import { JSX } from 'react'; import { ToolbarActionsProps } from './types'; /** * A floating toolbar component that displays action buttons. * Shows a trigger button when there are more visible actions than the visibleCount, * which expands to reveal all actions with a close button. * When visibleCount is undefined, all actions are shown without overflow. * * Children with the `data-toolbar-hidden` attribute are ignored when counting * visible actions but are included in the preview. This is useful for elements * like Dividers that should appear between actions but not count toward the limit. * * Example: With visibleCount=2 and children [Action1, Divider, Action2, Divider, Action3]: * - Preview shows: Action1, Divider, Action2 (2 visible actions + divider) * - Hidden: Divider, Action3 */ export declare function ToolbarActions({ children: _children, visibleCount, direction, labels, sx, IconButtonProps, TooltipProps, }: ToolbarActionsProps): JSX.Element | null;