/// import type { CommonPropsType } from '../../types'; import '../style'; export interface PropsType extends CommonPropsType { defaultValue?: string; title?: string; } export default function TimePicker(props: PropsType): JSX.Element;