import { RefObject } from 'react'; import { BulkAction } from '../../types.js'; type BulkActionsControlsVariant = 'toolbar' | 'sheet'; type BulkActionsControlsProps = { actions: BulkAction[]; variant: BulkActionsControlsVariant; checked?: boolean; indeterminate?: boolean; onCheck?(): void; showCheckbox?: boolean; resizingContainerRef?: RefObject; selectedCount?: number; totalCount?: number; hasSelection?: boolean; }; export declare function BulkActionsControls({ actions, variant, checked, indeterminate, onCheck, showCheckbox, resizingContainerRef, selectedCount, totalCount, hasSelection, }: BulkActionsControlsProps): import("react/jsx-runtime").JSX.Element; export {};