import * as React from 'react'; import type { SceneShelfSemanticName } from './types.js'; export interface SceneShelfRootProps extends React.HTMLAttributes { /** 主标题 */ title?: string; /** 副标题 */ subtitle?: string; theme?: 'light' | 'dark'; /** 语义化类名 */ classNames?: Partial>; /** 子组件(多个 Scene) */ children: React.ReactNode; } /** * SceneShelf Root 组件 * * @description 最外层容器,包含标题和多个场景 */ declare const SceneShelfRoot: React.ForwardRefExoticComponent>; export { SceneShelfRoot };