import { type HTMLAttributes, type Ref } from 'react'; import { type CssLength, type CssTime } from '../../../utils/css'; type RadialDashSpinnerProps = Omit, 'children' | 'color'> & { label?: string; size?: CssLength; color?: string; strokeWidth?: CssLength; duration?: CssTime; delay?: CssTime; stagger?: CssTime; dashLength?: number; inactiveOpacity?: number; activeOpacity?: number; paused?: boolean; spokeClassName?: string; ref?: Ref; }; declare const RadialDashSpinner: ({ label, size, color, strokeWidth, duration, delay, stagger, dashLength, inactiveOpacity, activeOpacity, paused, className, spokeClassName, style, ref, ...props }: RadialDashSpinnerProps) => import("react/jsx-runtime").JSX.Element; export { RadialDashSpinner }; export type { RadialDashSpinnerProps };