import type { ManifestPlainCss } from '../../../libs/extension-api/index.js'; /** * Theme manifest for styling the backoffice of Umbraco such as dark, high contrast etc */ export interface ManifestTheme extends ManifestPlainCss { type: 'theme'; } declare global { interface UmbExtensionManifestMap { UMB_THEME: ManifestTheme; } }