import { EmptyProps } from 'antd'; import { FC } from 'react'; export type EmptyWrapperProps = { empty?: boolean; loading?: boolean; } & EmptyProps; declare const EmptyWrapper: FC; export default EmptyWrapper;