import * as React from 'react';
import { MobileDateTimePickerProps } from './MobileDateTimePicker.types';
type MobileDateTimePickerComponent = (<TDate>(props: MobileDateTimePickerProps<TDate> & React.RefAttributes<HTMLDivElement>) => JSX.Element) & {
    propTypes?: any;
};
declare const MobileDateTimePicker: MobileDateTimePickerComponent;
export { MobileDateTimePicker };
