import { BrandedService } from "../../../../platform/instantiation/common/instantiation.js"; import { INotebookEditor, INotebookEditorContribution, INotebookEditorContributionDescription } from "./notebookBrowser.js"; export declare function registerNotebookContribution(id: string, ctor: { new (editor: INotebookEditor, ...services: Services): INotebookEditorContribution; }): void; export declare namespace NotebookEditorExtensionsRegistry { function getEditorContributions(): INotebookEditorContributionDescription[]; function getSomeEditorContributions(ids: string[]): INotebookEditorContributionDescription[]; }