/** @jsx jsx */ import React from "react"; export declare type Size = "large" | "medium" | "small" | "xsmall" | "2xsmall"; export declare type Theme = "light" | "dark" | "grayscale"; interface Props { /** * Class name that will be applied to the svg */ className?: string; /** * Theme for the spinner * @default "light" */ theme?: Theme; /** * Size of the spinner * @default "medium" */ size?: Size; } export declare const LoadingSpinner: React.ForwardRefExoticComponent>; export {};