import { IShowAutomationDialogOptions, IAutomationDialogResult } from "./automationDialogService.js"; export declare const IAutomationDialogService: import("@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation").ServiceIdentifier; /** * Bridges the workbench Automations UI (list widget) to the Sessions-layer * dialog implementation without a cross-layer import: the widget depends only * on this interface, while {@link AutomationDialogService} (sessions) provides it. */ export interface IAutomationDialogService { readonly _serviceBrand: undefined; showAutomationDialog(options: IShowAutomationDialogOptions): Promise; }