import * as React from 'react'; export interface SpinProps { loading?: boolean; children?: React.ReactNode; className?: any; style?: React.CSSProperties; } declare const Spin: (props: SpinProps) => JSX.Element; export default Spin;