import { t } from '@/lib/i18n' import type { DocLink, DocSection } from '@/hooks/useDocs' interface DocsSidebarProps { docs: DocLink[] selectedDoc: DocSection onSelectDoc: (docId: DocSection) => void } export function DocsSidebar({ docs, selectedDoc, onSelectDoc }: DocsSidebarProps): JSX.Element { return ( ) }