UNPKG

@maherunlocker/custom-react-table

Version:
14 lines (13 loc) 551 B
import React from 'react'; import { TableInstance } from 'react-table'; declare type FilterPageCustomProps<T extends Record<string, unknown>> = { instance: TableInstance<T>; anchorEl?: Element; onClose?: () => void; show?: boolean; setLocalFilterActive: any; filterActive?: boolean; tableName: string; }; export declare function FilterPageCustom<T extends Record<string, unknown>>({ instance, onClose, filterActive, setLocalFilterActive, tableName, }: FilterPageCustomProps<T>): React.ReactElement; export {};