/** * @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, SortDescriptor } from '@progress/kendo-data-query'; import { ExtendedColumnProps } from './ColumnProps.js'; import * as React from 'react'; /** * @hidden */ export declare const FILTER_ROW_CLASS = "k-table-row k-filter-row"; /** * @hidden */ export interface FilterRowProps { columns: ExtendedColumnProps[]; filter?: FilterDescriptor[]; filterChange: (event: { filter: FilterDescriptor[]; field: string; syntheticEvent: React.SyntheticEvent; }) => void; sort?: SortDescriptor[]; ariaRowIndex?: number; } /** * @hidden */ export declare const FilterRow: (props: FilterRowProps) => React.JSX.Element;