import type { LocalDocPageInformation, LocalDocPageGroupInformation, LogoInformation } from "./parse_doc_configs.js";
/**
 * Construct HTML element, as a string, which corresponds to the sidebar for
 * the chosen documentation page.
 * @param {Array.<Object>} pages
 * @param {Array.<number>} currentPageIndexes
 * @param {string} currentPath
 * @param {Object} logoInfo
 * @returns {string}
 */
export default function generateSidebarHtml(pages: Array<LocalDocPageInformation | LocalDocPageGroupInformation>, currentPageIndexes: number[], currentPath: string, logoInfo: LogoInformation | null): string;
