import React from 'react';
declare const viewComponents: {
    days: any;
    months: any;
    years: any;
    time: any;
};
declare function CalendarContainer(props: {
    view: keyof typeof viewComponents;
    viewProps: any;
}): React.CElement<any, React.Component<any, any, any>>;
export default CalendarContainer;
