/// <reference types="react" />
import { TCalendarCell } from "./calendar.types";
export declare function CalendarCell({ state, date, currentMonth, numberOfDays, }: TCalendarCell): JSX.Element;
export declare function CalendarHorizontalCell(props: Omit<TCalendarCell, "currentMonth" | "numberOfDays">): JSX.Element;
