/// export interface Props { value?: [string, string]; onChange?: (value: [string, string]) => void; } export default function TimePickerRange(props: Props): JSX.Element;