interface SpinnerProps { /** * Whether the spinner should be animating */ active?: boolean; /** * Spinner characters to cycle through */ frames?: string[]; /** * Animation interval in milliseconds */ interval?: number; } /** * Animated spinner component for indicating loading/processing state */ export declare function Spinner({ active, frames, interval }: SpinnerProps): import("react/jsx-runtime").JSX.Element | null; export {}; //# sourceMappingURL=Spinner.d.ts.map