/*! * Vuepress Simple Sidebar Plugin * Copyright 2020 Dimitrios Psarrou * Licensed under MIT (https://github.com/dpsarrou/vuepress-simple-sidebar/blob/master/LICENSE) */ import { Pages } from "./pages"; export declare class SidebarNav { groups(pages: Pages): { [key: string]: SidebarGroup[]; }; private convertToTree; private convertToGroups; private convertToGroup; private createGroup; private createGroupItem; private extracTitleFromDir; } interface SidebarGroup { _id: string; path?: string; title: string; children: SidebarGroup[]; } export {};