import type { FC } from "react"; export type TEstimateTimeInputProps = { value?: number; handleEstimateInputValue: (value: string) => void; }; export function EstimateTimeInput(_props: TEstimateTimeInputProps) { return <>; }