/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { default as PropTypes } from 'prop-types'; import { FilterDescriptor } from '@progress/kendo-data-query'; import * as React from 'react'; /** * The props of the TextFilter component. */ export interface TextFilterProps { /** * The FilterDescriptor object which will be edited. */ filter: FilterDescriptor; /** * The FilterChange event, triggered while editing the FilterOperator. */ onFilterChange: (event: { nextFilter: FilterDescriptor; }) => void; /** * The accessible label of the component. * * @remarks * This property is related to accessibility. */ ariaLabel?: string; } /** * The TextFilter component used for editing text value of FilterDescriptor object. */ export declare class TextFilter extends React.Component { /** * @hidden */ static propTypes: { filter: PropTypes.Validator; onFilterChange: PropTypes.Validator<(...args: any[]) => any>; ariaLabel: PropTypes.Requireable; }; /** * @hidden */ render(): React.JSX.Element; private onChange; }