import React from 'react';
import { BoundType } from '../../../../constants/outlier';
interface IItemProps {
    type: BoundType;
    fieldOptions: string[];
    value: string | number;
    handleValueChange: (value: string | number) => void;
    handleTypeChange: (type: BoundType) => void;
}
export default class Item extends React.Component<IItemProps, any> {
    get boundTypeOptions(): {
        text: string;
        value: BoundType;
    }[];
    handleLowerBoundChange(type: BoundType): void;
    render(): React.JSX.Element;
}
export {};
