import { observer } from "mobx-react-lite"; // components import { EstimateSelect } from "components/estimates"; // types import { IEstimatePoint } from "types"; export interface IIssuePropertyEstimates { value: number | null; onChange: (value: number | null) => void; estimatePoints: IEstimatePoint[] | null; disabled?: boolean; hideDropdownArrow?: boolean; } export const IssuePropertyEstimates: React.FC = observer((props) => { const { value, onChange, estimatePoints, disabled, hideDropdownArrow = false } = props; return ( ); });