import * as React from 'react'; export type Unit = { label: React.ReactText; value: ValueType; disabled?: boolean; }; export interface TimeUnitColumnProps { units: Unit[]; value: number | string; optionalValue?: number | string; type: 'hour' | 'minute' | 'second' | 'millisecond' | 'meridiem'; onChange: (value: number | string) => void; onHover: (value: number | string) => void; onDblClick?: VoidFunction; changeOnScroll?: boolean; } export default function TimeColumn(props: TimeUnitColumnProps): React.JSX.Element;