import { default as React } from 'react'; declare const SPINNER_VARIANT: { readonly PRIMARY: "primary"; readonly DISABLED: "disabled"; readonly NEGATIVE: "negative"; readonly NEGATIVE_DISABLED: "negative-disabled"; }; type SpinnerVariant = (typeof SPINNER_VARIANT)[keyof typeof SPINNER_VARIANT]; declare const SPINNER_SIZE: { readonly XXS: "xxs"; readonly XS: "xs"; readonly SM: "sm"; readonly MD: "md"; readonly LG: "lg"; }; type SpinnerSize = (typeof SPINNER_SIZE)[keyof typeof SPINNER_SIZE]; type SpinnerProps = React.ComponentPropsWithoutRef<'svg'> & { size?: SpinnerSize; variant?: SpinnerVariant; }; declare const Spinner: React.ForwardRefExoticComponent, "ref"> & { size?: SpinnerSize; variant?: SpinnerVariant; } & React.RefAttributes>; export { Spinner }; export type { SpinnerProps, SpinnerSize, SpinnerVariant };