import { SxProps } from '@mui/material'; import { Theme } from '@emotion/react'; import { DatePickVariant } from '../types'; export interface TimePickerBaseProps { sx?: SxProps; label?: string; timezone?: string; language?: string; onChange?: React.ChangeEvent; variant?: DatePickVariant; }