import { NgDocRendererOptions } from '../../interfaces';
/**
 * Renders a template with the given options via Nunjucks.
 * @param template - The template path to render.
 * @param options - The options to render the template with.
 */
export declare function renderTemplate<T extends object>(template: string, options?: NgDocRendererOptions<T>): string;
/**
 * Renders a template string with the given options via Nunjucks.
 * @param template - The template string to render.
 * @param options - The options to render the template with.
 */
export declare function renderTemplateString<T extends object>(template: string, options: NgDocRendererOptions<T>): string;
