import type { SVGAttributes } from 'svelte/elements'; type Props = SVGAttributes; /** * This spinner was copied from the official Tailwind documentation. * * * **Documentation**: https://tailwindcss.com/docs/animation#adding-a-spin-animation * * **Source code**: https://github.com/tailwindlabs/tailwindcss.com/blob/79d65d7560376eeb4f87c408bbd021cddc125dc1/src/docs/hover-focus-and-other-states.mdx?plain=1#L1668-L1679 * * ## Examples * * ```svelte * * * * ``` */ declare const Spinner: import("svelte").Component; type Spinner = ReturnType; export default Spinner; //# sourceMappingURL=Spinner.svelte.d.ts.map