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