/** * 预约页响应式断点:宽度 ≤ 该值时落到 `phone` 布局。 * * 选 768 与仓库内既有手机断点一致(见 ToolBarFilter.less / ResourceWallViewport.less)。 */ export declare const PISELL_RESERVATION_PHONE_MAX_WIDTH = 768; /** * 监听视口宽度,得到预约页应使用的 `variant`。 * * - 调用方显式传入 `forced` 时,优先使用之,避免覆盖业务/低代码意图(见 responsive 规则中 props 优先级); * - 否则按断点动态返回 `'phone'` / `'desktop'`,并在 resize / orientation 变化时同步更新。 * * @param forced 调用方显式指定的 variant;不传则按断点判定 */ export declare function useReservationResponsiveVariant(forced?: string): string; export default useReservationResponsiveVariant;