import { BulkAction } from '../../types'; type MobileBulkActionsSheetProps = { open: boolean; actions: BulkAction[]; selectedCount: number; totalCount?: number; hasSelection: boolean; checked?: boolean; indeterminate?: boolean; onCheck?(): void; showBulkCheckbox?: boolean; }; export declare function MobileBulkActionsSheet({ open, actions, selectedCount, totalCount, hasSelection, checked, indeterminate, onCheck, showBulkCheckbox, }: MobileBulkActionsSheetProps): import("react/jsx-runtime").JSX.Element; export {};