/** * Configuration for the docs-section component. */ export interface DocsSectionMetadata { /** * Unique ID for the section (used for TOC linking). * Will be applied to the section element for anchor navigation. */ id: string; /** * Section title displayed as heading. */ title: string; /** * Heading level for the section. * @default 2 */ level?: 2 | 3; /** * Optional description below the title. */ description?: string; /** * Custom CSS class. */ cssClass?: string; }