import type { VoiceState } from "../../../chat/browser/voiceClient/voiceSessionController.js"; import type { URI } from "@codingame/monaco-vscode-api/vscode/vs/base/common/uri"; export interface VoiceBarProps { readonly voiceState: VoiceState; readonly speakingSessionLabel: string | undefined; readonly speakingSession: URI | undefined; readonly onStopSpeech: () => void; } export interface VoiceBarComponent { readonly element: HTMLElement; update(props: VoiceBarProps): void; } export declare function createVoiceBar(): VoiceBarComponent;