import { Color, ColorRegistry } from '@tartjs/core/lib/browser/color-registry'; import { ColorDefinition } from '@tartjs/core/lib/common/color'; import { Disposable } from '@tartjs/core/lib/common'; export declare class MonacoColorRegistry extends ColorRegistry { protected readonly monacoThemeService: monaco.services.IStandaloneThemeService; protected readonly monacoColorRegistry: monaco.color.IColorRegistry; getColors(): IterableIterator; getCurrentColor(id: string): string | undefined; protected doRegister(definition: ColorDefinition): Disposable; protected toColor(value: Color | undefined): monaco.color.ColorValue | undefined; }