@aures/custom-react-table
Version:
dynamic table based on react table v7
10 lines (9 loc) • 419 B
TypeScript
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 {};