/** * Help-article types for the frontend help feature. Self-contained — the * published frontend library stays decoupled from `@carlonicora/nestjs-neo4jsonapi`. */ declare const HELP_MODES: readonly ["tutorial", "how-to", "reference", "explanation"]; type HelpMode = (typeof HELP_MODES)[number]; interface HelpHeading { depth: 2 | 3; slug: string; text: string; } interface HelpArticle { id: string; slug: string; mode: HelpMode; title: string; summary: string; order: number; tags: readonly string[]; contextualKeys: readonly string[]; aiIndexed: boolean; draft: boolean; path: string; headings: readonly HelpHeading[]; relatedSlugs: readonly string[]; lastUpdated: string; } interface HelpRedirect { from: string; to: string; } export { HELP_MODES, type HelpArticle, type HelpHeading, type HelpMode, type HelpRedirect };