import { type SpinnerName } from "cli-spinners"; type SpinnerProps = { type?: SpinnerName; color?: string; bold?: boolean; }; export declare function Spinner({ type, color, bold, }: SpinnerProps): import("react/jsx-runtime").JSX.Element; export {};