buroventures-harald-code
Version:
Harald Code - AI-powered coding assistant CLI
18 lines (17 loc) • 507 B
TypeScript
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import React from 'react';
import type { SpinnerName } from 'cli-spinners';
interface GeminiRespondingSpinnerProps {
/**
* Optional string to display when not in Responding state.
* If not provided and not Responding, renders null.
*/
nonRespondingDisplay?: string;
spinnerType?: SpinnerName;
}
export declare const GeminiRespondingSpinner: React.FC<GeminiRespondingSpinnerProps>;
export {};