import { DepGraph } from 'dependency-graph'; import type { Page, Context } from '@divriots/studio-doc-compiler'; export declare type PageGraph = DepGraph; export declare const buildGraph: (context: Context) => PageGraph; export declare const findPreviousNext: (graph: PageGraph, url: string) => { next: Page; previous: Page; };