///
import PropTypes from 'prop-types';
import React from 'react';
import { IPickerStyle } from '../picker/style/index.native';
import { DatePickerPropsType } from './PropsType';
export interface DatePickerNativeProps extends DatePickerPropsType {
styles?: IPickerStyle;
triggerTypes?: string;
}
export default class DatePicker extends React.Component {
static defaultProps: {
mode: string;
triggerType: string;
styles: any;
minuteStep: number;
};
static contextTypes: {
antLocale: PropTypes.Requireable;
};
render(): JSX.Element;
}