/** * @license * Copyright 2025 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ import React from "react"; /** Braille-pattern frames (same family as cli-spinners “dots”). */ export declare const CLI_SPINNER_FRAMES: readonly ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"]; interface CliSpinnerProps { readonly color?: string; /** When set, parent drives animation (e.g. batched with progress updates). */ readonly frameIndex?: number; } export declare function CliSpinner({ color, frameIndex }: CliSpinnerProps): React.ReactElement; export {};