import * as React from 'react';
import type { StatefulDatepickerProps, DatepickerProps } from './types';
type Props<T> = StatefulDatepickerProps<DatepickerProps<T>, T> & Omit<DatepickerProps<T>, keyof StatefulDatepickerProps<DatepickerProps<T>, T>>;
declare class StatefulComponent<T = Date> extends React.Component<Props<T>> {
    static defaultProps: Props<any>;
    render(): React.JSX.Element;
}
export default StatefulComponent;
