/** * @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 { TextFilterProps } from './TextFilter.js'; import * as React from 'react'; /** * The props of the NumericFilter component. */ export interface NumericFilterProps extends TextFilterProps { /** * Specifies the smallest value that can be entered. */ min?: number; /** * Specifies the greatest value that can be entered. */ max?: number; } /** * The NumericFilter component used for editing numeric value of FilterDescriptor object. */ export declare class NumericFilter extends React.Component { /** * @hidden */ static propTypes: { filter: PropTypes.Validator; onFilterChange: PropTypes.Validator<(...args: any[]) => any>; }; /** * @hidden */ render(): React.JSX.Element; private onChange; }