import { EmptyProps } from '@firesoon/antd/lib/empty/index'; import './index.less'; interface FsEmptyProps extends EmptyProps { /** 类型 */ type?: 'normal' | 'table' | 'charts' | 'authority' | 'antd' | '404' | 'network'; /** 尺寸 */ size?: 'small'; } declare const Index: (props: FsEmptyProps) => JSX.Element; export default Index;