import * as React from 'react'; export interface IWeeklyDayPickerInlineExpandableExampleState { selectedDate?: Date; expanded?: boolean; } export declare class WeeklyDayPickerInlineExpandableExample extends React.Component<{}, IWeeklyDayPickerInlineExpandableExampleState> { constructor(props: {}); render(): JSX.Element; private _onSelectDate; private _goPrevious; private _goNext; private _expand; }