import * as React from 'react';
import { DateTimeRangePickerProps } from "./DateTimeRangePicker.types.mjs";
type DateTimeRangePickerComponent = ((props: DateTimeRangePickerProps & React.RefAttributes<HTMLDivElement>) => React.JSX.Element) & {
  propTypes?: any;
};
/**
 * Demos:
 *
 * - [DateTimeRangePicker](https://mui.com/x/react-date-pickers/date-time-range-picker/)
 * - [Validation](https://mui.com/x/react-date-pickers/validation/)
 *
 * API:
 *
 * - [DateTimeRangePicker API](https://mui.com/x/api/date-pickers/date-time-range-picker/)
 */
declare const DateTimeRangePicker: DateTimeRangePickerComponent;
export { DateTimeRangePicker };