import * as React from 'react'; import moment from 'moment'; export interface IWeekSelectionControlsProps { className?: string; currentDate?: string; startOfWeek: string; endOfWeek: string; onNext: () => void; onPrevious: () => void; onDateSelected: (newDate: moment.Moment) => void; } export default function WeekSelectionControls(props: IWeekSelectionControlsProps): React.JSX.Element;