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