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