import { DaySizes } from 'src/helpers/getDaySize';
import { Day, Month } from '../../types/types';
interface CalendarBodyBody {
    finalDaysArray: Month | undefined;
    selectedDay: string | undefined;
    secondDay: string | undefined;
    setUpSelectedDay: (dayItem: Day) => void;
    range: string[] | undefined;
    daySizes: DaySizes;
}
export declare function CalendarBody({ finalDaysArray, selectedDay, secondDay, setUpSelectedDay, range, daySizes, }: CalendarBodyBody): import("react/jsx-runtime").JSX.Element;
export {};
