/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { FilterDescriptor } from '@progress/kendo-data-query'; /** * @hidden */ export interface FilterCellProps { /** * The column field in which the cell is located. */ field?: string; /** * The function that will be called if the cell needs to notify its parent TreeList about a change. */ onFilterChange?: (event: { filter: Array; field: string; syntheticEvent: React.SyntheticEvent; }) => void; /** * The collection of `FilterDescriptor` objects that is passed by the TreeList component. */ filter?: FilterDescriptor[]; /** * @hidden */ components?: { DatePicker?: any; DropDownList?: any; Input?: any; NumericTextBox?: any; }; /** * @hidden */ clearButtonTitle?: string; }