import React from 'react'; import { ColumnConfigType } from '../../types/advanced-grid.types'; import { FilterOptionsType } from '../../types/advanced-grid.types'; interface Props { columnConfig?: ColumnConfigType; fieldName: string; filterOptions?: FilterOptionsType; id: string; onChange?: (e: React.ChangeEvent) => void; value?: string | number; } /** * Allows to add logic to resolve the different field types to use as filter * @author Alejandro Quiroz * @version 1.0.0 * @param param0 * @returns */ declare const FilterResolver: React.FC; export default FilterResolver;