/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type { ThoughtSummary } from '@3-/qwen-code-core'; import type React from 'react'; interface LoadingIndicatorProps { currentLoadingPhrase?: string; elapsedTime: number; rightContent?: React.ReactNode; thought?: ThoughtSummary | null; } export declare const LoadingIndicator: React.FC; export {};