import { IJaenPage } from '../../types'; export type PageNode = { id: string; slug: string; parent: { id: string; } | null; }; export declare const generateOriginPath: (allNodes: Array, node: PageNode, path?: string) => string | undefined; export declare const generatePagePaths: (allNodes: IJaenPage[], pageId: string) => { [path: string]: string; };