import React from 'react'; import { DataRow } from '../types/cell.type'; import { TableContext } from '../types/table.type'; export interface DataTableToolBarProps { context: TableContext; onSave: () => void; onInsert: (row: DataRow) => void; onDelete: (rows: DataRow[]) => void; } export declare const DataTableToolBar: React.FC; //# sourceMappingURL=action.toolbar.d.ts.map