import { IWorkbenchContribution } from "@codingame/monaco-vscode-api/vscode/vs/workbench/common/contributions"; import { IRemoteAgentService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/remote/common/remoteAgentService.service"; import { IWorkbenchEnvironmentService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/environment/common/environmentService.service"; import { ITelemetryService } from "@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetry.service"; import { IBannerService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/banner/browser/bannerService.service"; import { IOpenerService } from "@codingame/monaco-vscode-api/vscode/vs/platform/opener/common/opener.service"; import { IHostService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/host/browser/host.service"; import { IStorageService } from "@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service"; import { IProductService } from "@codingame/monaco-vscode-api/vscode/vs/platform/product/common/productService.service"; import { IDialogService } from "@codingame/monaco-vscode-api/vscode/vs/platform/dialogs/common/dialogs.service"; export declare class InitialRemoteConnectionHealthContribution implements IWorkbenchContribution { private readonly _remoteAgentService; private readonly _environmentService; private readonly _telemetryService; private readonly bannerService; private readonly dialogService; private readonly openerService; private readonly hostService; private readonly storageService; private readonly productService; constructor(_remoteAgentService: IRemoteAgentService, _environmentService: IWorkbenchEnvironmentService, _telemetryService: ITelemetryService, bannerService: IBannerService, dialogService: IDialogService, openerService: IOpenerService, hostService: IHostService, storageService: IStorageService, productService: IProductService); private _confirmConnection; private _checkInitialRemoteConnectionHealth; private _measureExtHostLatency; }