import React from 'react'; export interface RoomCardShellViewProps { className: string; checkoutBookingKey?: string; header?: React.ReactNode; children?: React.ReactNode; ribbonSlot?: React.ReactNode; cornerSlot?: React.ReactNode; /** 圆桌:顶栏与正文须同一裁剪容器,与方桌 comfortable 双 chip 拆分互斥 */ shellShape?: 'rect' | 'circle'; /** * 非 comfortable tooltip 极简卡:顶栏+正文合并区使用 `.rc-tooltip-time-main`, * 避免牵连 `.rc-unified` / `.rc-body` 全局样式。 */ tooltipTimeStandaloneMain?: boolean; } /** * 单张 RoomCard 根壳:顶栏 + 可选主体。 * comfortable:方桌顶栏与正文分两截;圆桌在 {@link FloorRoomCardLayoutOptions.discUnifiedLayoutEnabled} 开启时合并为 `.rc-unified`。 * 其它档位:合并为 `.rc-unified`。 */ export declare function RoomCardShellView(props: RoomCardShellViewProps): React.JSX.Element;