/// import { PropsFromHTMLDivElementWithoutStyle } from './utils'; export interface LayoutProps extends PropsFromHTMLDivElementWithoutStyle { /** * 自定义 class */ className?: string; /** * 布局模式,只在 root layout 有效 * fluid: 流式,可搭配 $layout-fluid-min-width / $layout-fluid-max-width 或直接覆写来指定内容区的最小/最大宽度以使页面不至于太小过太大 * static: 固定宽度,可搭配 $layout-static-width 或直接覆写来制定内容区的宽度 */ mode?: 'fluid' | 'static'; } export declare const Layout: import("react").ForwardRefExoticComponent>;