import { type CSSProperties } from 'react'; export type YarnLoaderProps = { /** Accessible status label. */ label?: string; /** Rendered loader diameter in pixels. */ size?: number; /** Seconds per spin and yarn expansion loop. */ speed?: number; /** Pause the CSS animations while preserving the visual. */ paused?: boolean; /** Ring colors. Values cycle across the eight yarn strands. */ colors?: readonly string[]; className?: string; style?: CSSProperties; }; export declare const YarnLoader: ({ label, size, speed, paused, colors, className, style, }: YarnLoaderProps) => import("react/jsx-runtime").JSX.Element;