export type DocAccessLevel = 'employee' | 'site_manager' | 'admin' export interface DocBlock { type: 'paragraph' | 'list' | 'note' content: string } export interface DocArticle { id: string title: string requiredLevel: DocAccessLevel blocks: DocBlock[] } export interface DocSection { id: string title: string requiredLevel: DocAccessLevel icon: string articles: DocArticle[] }