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