/** * 日/周视图日历格内单条预约的渲染:拖拽抑制、详情打开、RoomCard 或回退按钮。 */ import React, { type MutableRefObject } from 'react'; import type { RecordBoardCalendarBookingRenderArgs } from '@pisell/materials'; import type { PisellReservationTableRow } from '../types'; export interface ReservationCalendarBookingNodeProps { args: RecordBoardCalendarBookingRenderArgs; tables: PisellReservationTableRow[]; /** 拖拽结束后短窗内挡一次误触详情 */ calendarDragSuppressDetailRef: MutableRefObject<{ bookingId: string | null; timer: ReturnType | null; }>; } /** * 日历预约条节点(由 `useReservationCalendarSlot` 的 `renderBooking` 返回)。 */ export declare function ReservationCalendarBookingNode(props: ReservationCalendarBookingNodeProps): React.JSX.Element;