import { FC } from "react"; export interface ISidebarEntry { title: string; cnTitle?: string; path: string; } declare let DocSidebar: FC<{ currentPath: string; onSwitch: (item: ISidebarEntry) => void; className?: string; items: ISidebarEntry[]; title?: string; emptyLocale?: string; }>; export default DocSidebar;