import React from 'react'; declare function Spin(props: SpinProps): JSX.Element; declare namespace Spin { var defaultProps: { size: string; shape: string; type: string; spinColor: string; circleColor: string; }; } interface SpinProps { children?: React.ReactNode; circleColor?: string; className?: React.HTMLAttributes['className']; size?: 'sm' | 'md' | 'lg' | 'xl'; spinColor?: 'brand' | 'danger' | 'important' | 'informative' | 'severe' | 'subtle' | 'success' | 'warning'; style?: React.CSSProperties; } export { Spin };