import { DayPicker } from 'react-day-picker';
import * as React from 'react';
type CalendarProps = React.ComponentProps<typeof DayPicker>;
declare const Calendar: {
    ({ className, classNames, showOutsideDays, ...props }: CalendarProps): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
export default Calendar;
export type { CalendarProps };
