import { SpinProps } from 'antd';
import { FC } from 'react';
import { SPIN } from '../../Types';
export interface ISpin {
    ctype: typeof SPIN;
    props: SpinProps;
}
declare const Spin: FC<ISpin>;
export default Spin;
