import type { ElementType } from 'react'; export interface IDateTimePickerInput { id: string; labelId: string; value: string; onShowCalendar: () => void; size: 'small' | 'medium' | 'large'; Icon?: ElementType; }