declare type FilterType = { [key: string]: number | string | undefined | boolean; }; /** * Hoook to allow the grid control the filters * @author Alejandro Quiroz * @version 1.0.0 * @returns */ declare const useGridFilter: () => [FilterType, (e: React.ChangeEvent) => void]; export default useGridFilter;