import React from 'react'; import { LayoutConfig } from '../../types'; import './index.less'; interface LayoutContainerProps { className: string; config: LayoutConfig | null; children: React.ReactNode[]; } /** * 统一的布局容器组件 * * 支持三种布局模式: * 1. 响应式布局(推荐):通过 responsive 配置,使用 ResizeObserver 实现容器级响应式 * 2. Custom 布局:通过 className 使用预设样式 * 3. Ant Design Grid 布局:基础的栅格布局,用于简单场景 */ declare function LayoutContainer({ className: containerClassName, config, children, }: LayoutContainerProps): React.ReactElement | null; export default LayoutContainer;