import React from 'react'; import type { PisellReservationProps } from './types'; /** * 大屏(资源墙)专用页面:仅资源墙子视图。 * * - `bodyViewSwitchable={false}`:隐藏 RecordBoard 顶栏左上角「表格 / 平面图 / 日历 / 大屏」Segmented; * - `lockedBodyView="resourceWall"`:锁定在大屏视图。 * * **无需新增 props 类型**:沿用 {@link PisellReservationProps};可选行为与预约页相同(如 `toolBar`、`scheduleValue`、`floorMap` 等)。 * Core 在锁定大屏或预约页内 Segmented 切到「大屏」时(`shellBodyView === 'resourceWall'`)均 **强制跟随当前时间**(不可关闭)。 * 默认使用 {@link PISELL_RESERVATION_VENUE_WALL_PAGE_STORAGE_KEY} 作为 `bodyViewStorageKey`,以便大屏筛选与主预约页 localStorage 隔离;可传入自定义 key 覆盖。 */ export declare const PisellVenueWallPage: React.FC; export default PisellVenueWallPage;