/** * 日视图 / 周视图共用的分组头左侧 sticky 单元(折叠箭头 + 分组名 + 数量角标)。 * 样式单点维护,与 {@link buildGroupedCourtRows} 的 group 行对应。 */ import React from 'react'; import type { RecordBoardCalendarProps } from '../../../types'; export interface BookingCalendarGroupRowModel { id: string; label: string; count: number; collapsed: boolean; } export interface BookingCalendarGroupRowHeaderProps { isLight: boolean; /** 透传给 `renderResourceCell`(低代码自定义左侧格) */ view: 'day' | 'week' | 'resource'; row: BookingCalendarGroupRowModel; renderResourceCell?: RecordBoardCalendarProps['renderResourceCell']; setCollapsedGroups: React.Dispatch>>; /** 日视图虚拟格子/grid 定位时使用 */ style?: React.CSSProperties; } export declare function BookingCalendarGroupRowHeader(props: BookingCalendarGroupRowHeaderProps): React.JSX.Element;