interface Props { /** Primary colour of the spinner. */ colour?: string; /** * Outer width of the spinner */ width?: number; /** * Width of the spinner ring */ ringWidth?: number; /** * How fast the spinner spins in seconds */ speed?: number; /** * Vertical padding for the spinner's container */ containerPadding?: number; } /** * A CSS loading spinner (rotating ring) with configurable colour, size, thickness and speed. * * [Read the docs.](https://reuters-graphics.github.io/graphics-components/?path=/docs/components-utilities-spinner--docs) */ declare const Spinner: import("svelte").Component; type Spinner = ReturnType; export default Spinner;