/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { FilterCellProps } from './FilterCellProps.js'; import { FilterOperator } from './FilterOperator.js'; /** * @hidden */ export interface FilterComponentProps extends FilterCellProps { /** * The list of the operators. */ operators?: FilterOperator[]; /** * The accessible label of the component. */ ariaLabel?: string; /** * @ hidden */ min?: number; /** * @hidden */ max?: number; }