import type { UmbSectionContext } from '../section.context.js'; import type { UmbSectionElement } from './section-element.interface.js'; import type { ManifestElementAndApi, ManifestWithDynamicConditions } from '../../../../libs/extension-api/index.js'; export interface ManifestSection extends ManifestElementAndApi, ManifestWithDynamicConditions { type: 'section'; meta: MetaSection; } export interface MetaSection { label: string; pathname: string; preventUrlRetention?: boolean; }