/*! * Vuepress Simple Sidebar Plugin * Copyright 2020 Dimitrios Psarrou * Licensed under MIT (https://github.com/dpsarrou/vuepress-simple-sidebar/blob/master/LICENSE) */ export declare class Pages { private pages; constructor(pages: VuepressPage[]); private format; all(): Page[]; paths(): string[]; } interface VuepressPage { relativePath: string; title: string; } interface Page { path: string; title: string; } export {};