import type { UmbControllerHostElement } from '../../../../libs/controller-api/index.js'; import type { ManifestElementAndApi, ManifestWithDynamicConditions } from '../../../../libs/extension-api/index.js'; export interface ManifestWorkspaceFooterApp extends ManifestElementAndApi, ManifestWithDynamicConditions { type: 'workspaceFooterApp'; } export interface ManifestWorkspaceFooterAppMenuBreadcrumbKind extends ManifestWorkspaceFooterApp { type: 'workspaceFooterApp'; kind: 'menuBreadcrumb'; } export interface ManifestWorkspaceFooterAppVariantMenuBreadcrumbKind extends ManifestWorkspaceFooterApp { type: 'workspaceFooterApp'; kind: 'variantMenuBreadcrumb'; } declare global { interface UmbExtensionManifestMap { ManifestWorkspaceFooterApp: ManifestWorkspaceFooterApp; ManifestWorkspaceFooterAppMenuBreadcrumbKind: ManifestWorkspaceFooterAppMenuBreadcrumbKind; ManifestWorkspaceFooterAppVariantMenuBreadcrumbKind: ManifestWorkspaceFooterAppVariantMenuBreadcrumbKind; } }