/** * SvSpinner - a dedicated indeterminate loading spinner (distinct from the * determinate SvProgress bars). Sizeable, colorable, and it respects * `prefers-reduced-motion`. Give it a `label` for screen readers. * * ```svelte * * ``` */ type Props = { /** Diameter in px, or a named size. Default `md` (20px). */ size?: 'sm' | 'md' | 'lg' | number; /** Stroke color (defaults to the accent token). */ color?: string; /** Accessible label; when omitted the spinner is `aria-hidden`. */ label?: string; }; declare const SvSpinner: import("svelte").Component; type SvSpinner = ReturnType; export default SvSpinner;