import { type CSSProperties } from 'react'; export type PlanetLoaderProps = { /** Accessible status label. */ label?: string; /** Square host size. */ size?: number | string; /** One asteroid orbit duration in seconds. */ duration?: number; /** Planet fill color. */ planetColor?: string; /** Planet stroke and default asteroid color. */ orbitColor?: string; /** Travelling asteroid fill color. */ asteroidColor?: string; /** Travelling asteroid stroke color. */ asteroidStrokeColor?: string; /** Planet stroke width in SVG viewBox units. */ strokeWidth?: number; /** Asteroid stroke width in SVG viewBox units. */ asteroidStrokeWidth?: number; /** Stop the orbital motion and render static asteroid positions. */ paused?: boolean; className?: string; style?: CSSProperties; }; declare const PlanetLoader: ({ label, size, duration, planetColor, orbitColor, asteroidColor, asteroidStrokeColor, strokeWidth, asteroidStrokeWidth, paused, className, style, }: PlanetLoaderProps) => import("react/jsx-runtime").JSX.Element; export { PlanetLoader };