/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { CompositeFilterDescriptor, SortDescriptor } from '@progress/kendo-data-query'; import { ExtendedColumnProps } from '../interfaces/ColumnProps'; import { FilterOperators } from '../interfaces/FilterOperators'; import { PropType } from 'vue'; /** * @hidden */ export interface FilterRowProps { grid: any; columns: ExtendedColumnProps[]; filter?: CompositeFilterDescriptor | any; filterOperators: FilterOperators; sort?: SortDescriptor[]; cellRender?: any; isRtl?: boolean; ariaRowIndex?: number; size?: string; } /** * @hidden */ declare const FilterRow: import('vue').DefineComponent; columns: PropType; filter: PropType; filterOperators: PropType; sort: PropType; cellRender: PropType; isRtl: PropType; ariaRowIndex: PropType; size: PropType; }>, { kendoLocalizationService: {}; }, {}, {}, { headerCellClassName(field?: string, locked?: boolean): string; setFilter(value: string | number, operator: string | Function, field: string | undefined, e: any): void; }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly; columns: PropType; filter: PropType; filterOperators: PropType; sort: PropType; cellRender: PropType; isRtl: PropType; ariaRowIndex: PropType; size: PropType; }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { FilterRow };