import type { ThemeBaseSize } from "../theme.types"; export interface LoadingProps extends React.ComponentProps<"span"> { color?: "primary" | "secondary" | "accent" | "info" | "success" | "warning" | "error" | "neutral"; size?: ThemeBaseSize; /** loading variant * @default spinner */ variant?: "spinner" | "dots" | "ring-3" | "ball" | "bars" | "infinity"; className?: string; style?: React.CSSProperties; } export declare function Loading(props: LoadingProps): import("react").JSX.Element;