import React from 'react'; import { SpinProps } from '.'; interface ISpinProps extends SpinProps { className?: string; count?: number; margin?: number | string; render?(spinClass: any, i: number, props: ISpinProps): React.ReactNode; size?: number | string; spinClass?(...rest: any[]): string; style?: React.CSSProperties; itemStyle?: React.CSSProperties; itemSize?: string; itemClass?: string; } declare const _default: React.NamedExoticComponent; export default _default;