import React from 'react'; import { DropdownBodyProps, NumericInputCoreProps } from '@epam/uui-core'; interface INumericRangeValue { /** * Defines range value 'from' */ from: number | null; /** * Defines range value 'to' */ to: number | null; } interface IFilterNumericBodyProps extends DropdownBodyProps, NumericInputCoreProps { /** * Called when numeric body value needs to be changed */ onValueChange: (value: number | INumericRangeValue) => void; /** * Defines numeric body value */ value: undefined | number | INumericRangeValue; /** * Defines the selected predicate */ selectedPredicate?: string; } export declare function FilterNumericBody({ min, max, step, ...props }: IFilterNumericBodyProps): React.JSX.Element; export {}; //# sourceMappingURL=FilterNumericBody.d.ts.map