UNPKG

@grafana/ui

Version:
11 lines (10 loc) 421 B
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 {};