/// <reference types="react" />
import * as React from 'react';
import { UpDateStyledProps } from './';
import { ThemeInterface } from "../../../Common/theming/types";
export declare const NormalDate: React.ComponentClass<UpDateStyledProps & {
    theme?: ThemeInterface;
    innerRef?: (instance: any) => void;
}>;
export default class UpDateStyle extends React.Component<UpDateStyledProps, {}> {
    static defaultProps: UpDateStyledProps;
    dateInput: any;
    constructor(p: any, c: any);
    setInput: (input: any) => void;
    componentDidMount(): void;
    render(): JSX.Element;
}
