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