import React from 'react'; import { Props as SpaceProps } from '../space'; declare const _default: ({ children, color, style, lineCls, hideLine, ...props }: SpaceProps & { /** * 颜色 */ color?: string | undefined; /** * 分割线类名 */ lineCls?: string | undefined; /** * 隐藏线 */ hideLine?: boolean | undefined; }) => React.JSX.Element; export default _default;