import { default as React } from 'react'; export interface SpinnerProps extends React.HTMLAttributes { /** * The size of the spinner. * @default "md" * @example "md" */ size?: 'sm' | 'md' | 'lg'; /** * The color of the spinner. * @default "primary" * @example "primary" */ color?: 'primary' | 'neutral' | 'success' | 'error' | 'warning' | 'info'; } export declare const Spinner: React.FC;