import { RegisterOptions } from 'react-hook-form'; export interface TimeSpentFieldProps { name: string; timeSpentFormat: string; defaultValue?: string; fieldError?: string; inputStyle?: React.CSSProperties; placeholder?: string; registerOptions?: RegisterOptions; style?: React.CSSProperties; onInputBlur?: () => void; } export declare function TimeSpentField({ name, placeholder, defaultValue, timeSpentFormat, registerOptions, onInputBlur, style, inputStyle, }: TimeSpentFieldProps): import("react/jsx-runtime").JSX.Element;