import React__default from 'react'; import { Empty } from 'antd'; import { EmptyProps } from 'antd/es/empty'; interface IEmptyProps extends EmptyProps { marginTop?: boolean; marginBottom?: boolean; /** 内联模式:图片与文字水平排列,适用于表格、表单等紧凑场景 */ inline?: boolean; } interface EmptyComponent extends React__default.FC { displayName: string; PRESENTED_IMAGE_DEFAULT: typeof Empty.PRESENTED_IMAGE_DEFAULT; PRESENTED_IMAGE_SIMPLE: typeof Empty.PRESENTED_IMAGE_SIMPLE; } export { EmptyComponent, IEmptyProps };