import React from 'react'; import type { RecordBoardCalendarProps } from '../../types'; export declare type PisellRecordBoardCalendarViewProps = RecordBoardCalendarProps; /** * RecordBoard 日历视图:内嵌 `BookingCalendar`(Tailwind 由包入口 `pisell-materials.tw.css` 注入)。 * * **布局分工**:外层 Shell 上 `pisell-record-board-calendar-viewport`(flex:1 / min-height:0 / overflow:hidden) * 只做「占位与裁剪高度」;本组件根节点负责在同一 flex 列里向下传递 **min-height:0**,避免 `BookingCalendar` * 撑破壳层(一层即可,历史上曾双包一层重复 flex+overflow)。 */ export declare function PisellRecordBoardCalendarView(props: PisellRecordBoardCalendarViewProps): React.JSX.Element;