/// import type { LayoutProps, SpaceProps, BorderProps, ColorProps, TypographyProps, PositionProps, FlexboxProps } from '@lx-react-materiel/shared'; import type { ViewProps } from '@tarojs/components'; import './index.less'; export type ILxBoxProps = ViewProps & LayoutProps & SpaceProps & BorderProps & ColorProps & TypographyProps & PositionProps & FlexboxProps; /** * 视图容器,把常见的样式挂载在 view 组件上:LayoutProps, SpaceProps, ColorProps, TypographyProps, PositionProps * * 1、基本用法参考 https://docs.taro.zone/docs/components/viewContainer/view * * 2、绑定 css 属性 使用。 * * @param props * @example * { args.children } */ export declare function LxBox(props: ILxBoxProps): JSX.Element;