UNPKG

@ackplus/react-tanstack-data-table

Version:

A powerful React data table component built with MUI and TanStack Table

10 lines (9 loc) 396 B
import { Column } from '@tanstack/react-table'; import { ColumnFilterRule } from '../../features'; interface FilterValueInputProps<T> { filter: ColumnFilterRule; column: Column<T, any>; onValueChange: (value: any) => void; } export declare function FilterValueInput<T>({ filter, column, onValueChange, }: FilterValueInputProps<T>): import("react/jsx-runtime").JSX.Element; export {};