import { DropdownOption, TextFilterProps } from './TableGenerator.types'; import { DropdownChangeParams, DropdownFilterParams } from 'primereact/dropdown'; export declare const useDropFilterState: ({ columnProps, title, filtersState, field, index, dispatch, onGlobalFilterChange }: TextFilterProps) => { onchangeText: ({ value }: DropdownChangeParams) => void; updateSearch: ({ filter }: DropdownFilterParams) => void; updateNegative: () => void; updateTrashState: () => void; updateAdding: () => void; adding: boolean; value: string; negative: boolean; dropOptions: DropdownOption[]; };