import { VisualizerData } from "../shared/types";
import { TemplateType } from "./template-types";
export type RenderTemplateOptions = {
    data: VisualizerData;
    title: string;
};
export declare const renderTemplate: (templateType: TemplateType, options: RenderTemplateOptions) => Promise<string>;
