import * as React from 'react';
import { DesktopTimeRangePickerProps } from "./DesktopTimeRangePicker.types.mjs";
type DesktopTimeRangePickerComponent = ((props: DesktopTimeRangePickerProps & React.RefAttributes<HTMLDivElement>) => React.JSX.Element) & {
  propTypes?: any;
};
declare const DesktopTimeRangePicker: DesktopTimeRangePickerComponent;
export { DesktopTimeRangePicker };