import React from 'react'; import { SpaceProps as AntdSpaceProps } from 'antd/lib/space/index'; export type { SpaceSize, SpaceContext } from 'antd/lib/space/index'; declare const Space_ELE_LIST: [1, 2, 3, 4, 5, 6, 7, 8]; export interface SpaceProps extends AntdSpaceProps { level?: typeof Space_ELE_LIST[number]; } declare const Space: React.FC; export default Space;