UNPKG

@payfit/unity-components

Version:

14 lines (13 loc) 693 B
import { RowData } from '@tanstack/react-table'; import { LegacyTable as TableType } from '@tanstack/react-table/legacy'; import { ActionBarActionItem } from '../../action-bar/ActionBar.js'; export interface DataTableBulkActionsLegacyProps<TData extends RowData> { table: TableType<TData>; actions: ActionBarActionItem[]; renderSelectionText?: (count: number) => string; } declare function DataTableBulkActionsLegacy<TData extends RowData>({ table, actions, renderSelectionText, }: DataTableBulkActionsLegacyProps<TData>): import("react/jsx-runtime").JSX.Element; declare namespace DataTableBulkActionsLegacy { var displayName: string; } export { DataTableBulkActionsLegacy };