UNPKG

@ackplus/react-tanstack-data-table

Version:

A powerful React data table component built with MUI and TanStack Table

10 lines (9 loc) 486 B
import { ReactNode } from 'react'; import { SelectionState } from '../../features/custom-selection.feature'; export interface BulkActionsToolbarProps<T = any> { selectionState: SelectionState; selectedRowCount: number; bulkActions?: (selectionState: SelectionState) => ReactNode; sx?: any; } export declare function BulkActionsToolbar<T = any>({ selectionState, selectedRowCount, bulkActions, sx, }: BulkActionsToolbarProps<T>): import("react/jsx-runtime").JSX.Element;