import { IMarkdownRenderer } from "@codingame/monaco-vscode-api/vscode/vs/platform/markdown/browser/markdownRenderer"; import { IConfigurationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service"; import { IInstantiationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation"; import { IChatToolInvocation, IChatToolInvocationSerialized } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/common/chatService"; import { IChatCodeBlockInfo } from "@codingame/monaco-vscode-2339d6ac-d6bb-53cd-95ee-81911735d1c7-common/vscode/vs/workbench/contrib/chat/browser/chat"; import { IChatContentPartRenderContext } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/browser/chatContentParts/chatContentParts"; import { BaseChatToolInvocationSubPart } from "./chatToolInvocationSubPart.js"; export declare class ChatToolProgressSubPart extends BaseChatToolInvocationSubPart { private readonly context; private readonly renderer; private readonly announcedToolProgressKeys; private readonly instantiationService; private readonly configurationService; readonly domNode: HTMLElement; readonly codeblocks: IChatCodeBlockInfo[]; constructor(toolInvocation: IChatToolInvocation | IChatToolInvocationSerialized, context: IChatContentPartRenderContext, renderer: IMarkdownRenderer, announcedToolProgressKeys: Set | undefined, instantiationService: IInstantiationService, configurationService: IConfigurationService); private createProgressPart; private get toolIsConfirmed(); private renderProgressContent; private getAnnouncementKey; private computeShouldAnnounce; private provideScreenReaderStatus; private hasMeaningfulContent; }