import * as React from 'react'; import { ExportedBaseTabsProps } from '@mui/x-date-pickers/internals'; import { DateTimeRangePickerTabsClasses } from "./dateTimeRangePickerTabsClasses.js"; export interface ExportedDateTimeRangePickerTabsProps extends ExportedBaseTabsProps { /** * Toggles visibility of the tabs allowing view switching. * @default `window.innerHeight < 667` for `DesktopDateTimeRangePicker` and `MobileDateTimeRangePicker` */ hidden?: boolean; /** * Date tab icon. * @default DateRangeIcon */ dateIcon?: React.ReactElement; /** * Time tab icon. * @default TimeIcon */ timeIcon?: React.ReactElement; /** * Override or extend the styles applied to the component. */ classes?: Partial; } export interface DateTimeRangePickerTabsProps extends ExportedDateTimeRangePickerTabsProps {} declare const DateTimeRangePickerTabs: { (inProps: DateTimeRangePickerTabsProps): React.JSX.Element | null; propTypes: any; }; export { DateTimeRangePickerTabs };