import { SpinProps } from 'antd'; import { FC } from 'react'; export interface FullHeightSpinProps extends SpinProps { minHeight?: number; mountOnFirstLoading?: boolean; } declare const FullHeightSpin: FC; export default FullHeightSpin;