import React from 'react'; import { BoxProps } from '../Box'; import { Theme } from '../../theme'; export interface SpinnerProps extends BoxProps<'svg'> { /** Delay after which spinner should be visible. */ delay?: number; /** The size of the spinner, */ size?: 'small' | 'medium' | 'large'; /** The color of the spinner. Defaults to the current text color */ color?: keyof Theme['colors']; } declare const _default: React.NamedExoticComponent; export default _default;