/// export interface TimePickerProps { label: string; value?: Date | null; handleChange: (newValue: Date | null) => void; disabled?: boolean; } declare function SparkDateTimePicker(props: TimePickerProps): JSX.Element; export default SparkDateTimePicker;