import type { CodeEditorTheme } from '../models/code-editor.model.js'; import { UmbCodeEditorThemeHighContrastLight } from './code-editor.hc-light.theme.js'; import { UmbCodeEditorThemeHighContrastDark } from './code-editor.hc-dark.theme.js'; import { UmbCodeEditorThemeLight } from './code-editor.light.theme.js'; import { UmbCodeEditorThemeDark } from './code-editor.dark.theme.js'; import type { monaco } from '../../../external/monaco-editor/index.js'; /** * 4 themes for the code editor. @type {*} */ declare const themes: Record; export { UmbCodeEditorThemeDark, UmbCodeEditorThemeLight, UmbCodeEditorThemeHighContrastLight, UmbCodeEditorThemeHighContrastDark, themes, };