import { type CSSProperties } from 'react'; export type CoilAxisLoaderProps = { /** Accessible status label. */ label?: string; /** Square host size. */ size?: number | string; /** Full loop duration in seconds. */ duration?: number; /** SVG stroke color. */ color?: string; /** Loader background and edge fade color. */ background?: string; /** SVG stroke width in viewBox units. */ strokeWidth?: number; /** Stop animation and render a static readable mark. */ paused?: boolean; className?: string; style?: CSSProperties; }; declare const CoilAxisLoader: ({ label, size, duration, color, background, strokeWidth, paused, className, style, }: CoilAxisLoaderProps) => import("react/jsx-runtime").JSX.Element; export { CoilAxisLoader };