UNPKG

@aures/custom-react-table

Version:
10 lines (9 loc) 419 B
import React from 'react'; import { TableInstance } from 'react-table'; type FilterChipBarProps<T extends Record<string, unknown>> = { instance: TableInstance<T>; setLocalFilterActive: any; filterActive: any; }; export declare function FilterChipBar<T extends Record<string, unknown>>({ instance, setLocalFilterActive, filterActive, }: FilterChipBarProps<T>): React.ReactElement | null; export {};