import React from 'react'; /** * 月视图:5 行 × 7 列。 * * 跨日 booking 用 absolute overlay 跨日列 banner 渲染(M1:跨自然周边界续画 + 端部 ◀/▶): * - 每周内跨日 booking 占统一 lane,单日 booking 逐日填剩余空位; * - 行高内自适应 effectiveMaxLane,超出 → cell 级 `+N` tile; * - cell 层只负责日期 header / 点击跳日 / drop 改期,不再渲染 booking 列表(被 overlay 替代)。 */ export declare function BookingCalendarMonthView({ isLight, anchorDate, monthDays, bookings, goToDayFromCell, handleGridDropMove, setDraggingItem, openBookingDetail, setOverflowListModal, renderMonthWeekBooking, tickFillMode, }: { isLight: any; anchorDate: any; monthDays: any; bookings: any; goToDayFromCell: any; handleGridDropMove: any; setDraggingItem: any; openBookingDetail: any; setOverflowListModal: any; renderMonthWeekBooking: any; tickFillMode: any; }): React.JSX.Element;