import React from 'react'; export interface SpinnerProps extends React.HTMLAttributes { /** * The spinner size */ size?: 'sm' | 'md' | 'lg'; /** * The spinner color */ color?: string; /** * Text to display next to the spinner */ label?: string; } /** * Spinner component for loading states * * @example * ```tsx * * * ``` */ export declare const Spinner: React.ForwardRefExoticComponent>; //# sourceMappingURL=Spinner.d.ts.map