import { ThemeIcon } from "@codingame/monaco-vscode-api/vscode/vs/base/common/themables"; import { EditorInputCapabilities, IUntypedEditorInput } from "@codingame/monaco-vscode-api/vscode/vs/workbench/common/editor"; import { EditorInput } from "@codingame/monaco-vscode-api/vscode/vs/workbench/common/editor/editorInput"; export declare class ModelsManagementEditorInput extends EditorInput { static readonly ID: string; readonly resource: undefined; get capabilities(): EditorInputCapabilities; constructor(); matches(otherInput: EditorInput | IUntypedEditorInput): boolean; get typeId(): string; getName(): string; getIcon(): ThemeIcon; resolve(): Promise; }