/// <reference types="react" />
import "normalize.css/normalize.css";
import { UpDateProps } from './';
import { BaseControlComponent } from '../_Common/BaseControl/BaseControl';
export default class UpDate extends BaseControlComponent<UpDateProps, Date> {
    static defaultProps: UpDateProps;
    constructor(p: any, c: any);
    shouldComponentUpdate(nextProps: any, nextState: any): boolean;
    renderControl(): JSX.Element;
    getValue(newDate: any): any;
}
