import { FC } from 'react'; import { FontColor } from '../../types'; export interface SpinnerProps { /** * Custom className to be applied to spinner container div element. */ className?: string; /** * Spinner color (color), pass down one of the options from the Palmetto 'brand' palette. */ color?: FontColor; /** * Size of the spinner. */ size?: 'sm' | 'md' | 'lg' | 'xl'; } export declare const Spinner: FC;