import { VariantProps } from 'class-variance-authority'; import { ComponentProps } from 'react'; declare const spinner: (props?: ({ size?: 1 | 2 | 3 | 4 | 5 | 6 | null | undefined; color?: "accent" | "attention" | "danger" | "success" | "neutral" | "default" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface SpinnerProps extends ComponentProps<'div'>, VariantProps { size?: 1 | 2 | 3 | 4 | 5 | 6; color?: 'default' | 'neutral' | 'accent' | 'danger' | 'success' | 'attention'; } export declare function Spinner({ className, size, color, 'aria-label': ariaLabel, 'aria-hidden': ariaHidden, ...props }: SpinnerProps): import("react/jsx-runtime").JSX.Element; export declare namespace Spinner { var displayName: string; } export {}; //# sourceMappingURL=spinner.d.ts.map