import React from 'react'; import { CommonPropsType } from '../../types'; import './index.less'; interface SpaceProps extends CommonPropsType { align?: string; itemStyle?: React.CSSProperties; } declare const _default: ({ children, align, itemStyle, ...props }: SpaceProps) => JSX.Element; export default _default; /** * 标题组件 */ export declare const Title: ({ children, ...rest }: { [x: string]: any; children: any; }) => JSX.Element;