import { default as React } from 'react'; import { StyleProps } from '../../style-engine'; declare const spinnerStyles: import('../../style-engine').StylesDef<{ size: { sm: string; md: string; lg: string; xl: string; }; color: { readonly default: "text-foreground"; readonly white: "text-white"; readonly primary: "text-primary"; readonly secondary: "text-secondary"; readonly accent: "text-accent"; readonly muted: "text-muted"; readonly success: "text-success"; readonly warning: "text-warning"; readonly danger: "text-danger"; readonly info: "text-info"; readonly gradient: "text-gradient-ui"; }; }>; type SpinnerVariantProps = StyleProps; export interface SpinnerProps extends Omit, keyof SpinnerVariantProps>, SpinnerVariantProps { } export declare function Spinner({ size, color, className, role: roleProp, 'aria-label': ariaLabelProp, 'aria-hidden': ariaHiddenProp, ...props }: SpinnerProps): React.JSX.Element; export {};