import { RegisterOptions } from 'react-hook-form'; import { DisableMode } from '../common/common'; /** * Component & its Props */ export interface Props { label: { label: string; /** Backend field-help code; shows the label's info tooltip when copy exists. */ fieldCode?: string; width?: number; }; name: string; placeholder: string; timeSpentFormat: string; defaultValue?: string; isDisabled?: DisableMode; registerOptions?: RegisterOptions; style?: React.CSSProperties; } export declare function LabeledTimeSpentField({ name, isDisabled, label, placeholder, timeSpentFormat, defaultValue, style, registerOptions, }: Readonly): import("react/jsx-runtime").JSX.Element;