import { ClassValue } from "clsx"; import "./index.css"; interface Props { /** * Additional class names to apply to the spinner. */ className?: ClassValue; /** * Color of the button * @default "neutral" */ color?: "primary" | "neutral" | "error" | "warning" | "success"; /** * Size of the button (this can be overridden by className) * @default "large" */ size?: "small" | "medium" | "large"; } export declare function Spinner({ className, color, size }: Props): JSX.Element; export {};