interface SpinnerProps { label?: string; /** When true, the spinner transitions to the error/red color. */ isStalled?: boolean; /** How long (in ms) the spinner has been stalled. Controls transition speed. */ stallDurationMs?: number; /** Disable decorative frame ticks so terminal scrollback remains usable. */ staticDisplay?: boolean; } export declare function Spinner({ label, isStalled, stallDurationMs, staticDisplay }: SpinnerProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Spinner.d.ts.map