import './CalendarMonth.css'; import React from 'react'; import { PropsWithJsxAttributes } from '../../../utils/types/PropsWithJsxAttributes'; import { CalendarCellProps } from '../CalendarCell/CalendarCell'; import { CalendarDayProps } from '../CalendarDay/CalendarDay'; declare type DayOfMonth = Omit; export declare type CalendarMonthProps = PropsWithJsxAttributes<{ children?: never; daysOfWeek: string[]; daysOfMonth: DayOfMonth[]; }, 'div'>; export declare const cnCalendarMonth: import("@bem-react/classname").ClassNameFormatter; export declare const CalendarMonth: React.FC; export {};