import React from 'react'; import './index.scss'; interface Props { /** * 容器自定义className */ className?: string; /** * 布局类型 ltrb tlrb ┌───────┬──────────────────────────────┐ ┌───────────────────────────────────┐ │ │ top │ │ top │ │ ├──────────────────────────────┤ ├──────┬────────────────────────────┤ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ left │ right │ │ left │ right │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├──────────────────────────────┤ ├──────┴────────────────────────────┤ │ │ bottom │ │ bottom │ └───────┴──────────────────────────────┘ └───────────────────────────────────┘ ltr trb ┌──────────────────────────────────────┐ ┌───────────────────────────────────┐ │ top │ │ top │ ├───────┬──────────────────────────────┤ ├───────────────────────────────────┤ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ left │ right │ │ right │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ├───────────────────────────────────┤ │ │ │ │ bottom │ └───────┴──────────────────────────────┘ └───────────────────────────────────┘ */ type?: 'tlrb' | 'ltrb' | 'trb' | 'tlr'; /** * 顶部容器 */ top?: JSX.Element; /** * 顶部容器样式 */ topStyle?: React.CSSProperties; /** * 左侧容器 */ left?: JSX.Element; /** * 左侧容器样式 */ leftStyle?: React.CSSProperties; /** * 右侧容器 */ right?: JSX.Element; /** * 右侧容器样式 */ rightStyle?: React.CSSProperties; /** * 底部容器 */ bottom?: JSX.Element; /** * 底部容器样式 */ bottomStyle?: React.CSSProperties; } export declare const Container: (props?: Props) => import("react/jsx-runtime").JSX.Element; export default Container;