import { TableRowSelectionCheckbox, type TableBulkActions as TableBulkActionsConfig } from '@mezzanine-ui/core/table'; export interface TableBulkActionsProps { /** Bulk actions configuration */ bulkActions: TableBulkActionsConfig; /** Custom class name */ className?: string; /** Whether to use fixed positioning */ isFixed?: boolean; /** Callback to clear all selections */ onClearSelection: VoidFunction; /** Array of selected row keys */ selectedRowKeys: TableRowSelectionCheckbox['selectedRowKeys']; } declare function TableBulkActions(props: TableBulkActionsProps): import("react/jsx-runtime").JSX.Element | null; export default TableBulkActions;