/// <reference types="react" />
import { AriaCalendarGridProps } from "@react-aria/calendar";
import { VariantProps } from "../theme";
import { TCalendarProps } from "./calendar.types";
import { CalendarContainer } from "./calendar.styles";
declare function Calendar({ rounded, as, showHorizontalTitle, colorScheme, monthDateFormat, withSelectors, tooltip, dateUnavailableStyle, size, visibleDuration, prevIcon, nextIcon, ...props }: TCalendarProps & VariantProps<typeof CalendarContainer> & AriaCalendarGridProps): JSX.Element;
export default Calendar;
