import * as React from 'react';
import { DayPicker, DateRange } from 'react-day-picker';

type CalendarProps = React.ComponentProps<typeof DayPicker>;
type CalendarValueType = {
    single: Date;
    multiple: Date[];
    range: DateRange;
};
declare function Calendar({ className, classNames, showOutsideDays, ...props }: CalendarProps): React.JSX.Element;
declare namespace Calendar {
    var displayName: string;
}

export { Calendar, type CalendarProps, type CalendarValueType };
