@grafana/ui
Version:
Grafana Components Library
11 lines (10 loc) • 421 B
TypeScript
import { FC } from 'react';
import { TableCellProps } from 'react-table';
import { TableFilterActionCallback } from './types';
import { Props } from './TableCell';
interface FilterableTableCellProps extends Pick<Props, 'cell' | 'field' | 'tableStyles'> {
onCellFilterAdded: TableFilterActionCallback;
cellProps: TableCellProps;
}
export declare const FilterableTableCell: FC<FilterableTableCellProps>;
export {};