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