import * as React from 'react'; type SpinnerVariant = 'circular' | 'dots' | 'sparkle'; interface SpinnerProps extends Omit, 'children'> { /** * The animated shape. * @default 'circular' */ variant?: SpinnerVariant; /** * Inherit the surrounding text color (`currentColor`) instead of the primary accent. * @default false */ currentColor?: boolean; } declare function Spinner({ variant, currentColor, 'aria-label': ariaLabel, className, ...props }: SpinnerProps): React.JSX.Element; export { Spinner }; export type { SpinnerProps }; //# sourceMappingURL=spinner.d.ts.map