/** * Maps doc/help paths (under /help/docs) to the app page they describe. * Used to show "Go back" / "Go to [X]" linking to the relevant settings or admin page. * * Key = path under /help/docs (e.g. "integrations/github" for /help/docs/integrations/github) */ export interface RelatedPage { href: string; label: string; } /** * Get the app page that a doc is about, if any. * Tries exact slug path first, then progressively shorter prefixes. */ export declare function getRelatedPageForDoc(slug: string[]): RelatedPage | null; //# sourceMappingURL=docs-related-pages.d.ts.map