import { Options, Reflection } from 'typedoc'; import { TypedocPluginMarkdownOptions } from './models'; import { MarkdownTheme } from './theme'; export declare class MarkdownThemeRenderContext { theme: MarkdownTheme; options: Options; readmeFile: string; indexFile: string; modulesFile: string; exportsFile: string; private _activeLocation; set activeLocation(activeLocation: string); get activeLocation(): string; constructor(theme: MarkdownTheme, options: Options); getOption(name: K): TypedocPluginMarkdownOptions[K]; getRelativeUrl(url: string | undefined): string | null; urlTo(reflection: Reflection): string | null; parseUrl(url: string): string; relativeURL(url: string | undefined): string | null; templates: import("./resources/resources").Templates; partials: import("./resources/resources").Partials; }