import React from "react"; import { CalendarDaysInMonthProps } from "./CalendarDaysInMonth"; export interface CalendarProps extends CalendarDaysInMonthProps { className?: string; style?: React.CSSProperties; } export declare const Calendar: ({ className, style, renderCell, ...props }: CalendarProps) => import("@emotion/react/jsx-runtime").JSX.Element;