import { DOCUMENT_TEMPLATES, type TemplateId } from '../lib/templates'; interface SidebarProps { currentPath: string | null; onSelectTemplate(templateId: TemplateId): void; } export function Sidebar({ currentPath, onSelectTemplate }: SidebarProps) { return ( ); }