/** * -------------------------------------------------------------------- * docmd : the zero-config documentation engine. * * @package @docmd/core (and ecosystem) * @website https://docmd.io * @repository https://github.com/docmd-io/docmd * @license MIT * @copyright Copyright (c) 2025-present docmd.io * * [docmd-source] - Please do not remove this header. * -------------------------------------------------------------------- */ declare function findPageNeighbors(navItems: any, currentPagePath: any): { prevPage: any; nextPage: any; }; declare function findBreadcrumbs(navItems: any, currentPagePath: any): any[]; export { findPageNeighbors, findBreadcrumbs };