import { Organization, PolicyBuilderConfig, PolicyBuilderPaths, PolicyBuilderStatus } from "./types"; declare function fillTemplate(templateFile: string, orgConfig: Organization): string; declare function renderMkdocsYAML(config: PolicyBuilderConfig, paths: PolicyBuilderPaths, outputPath: string): Promise; declare function renderTemplateFile(templateFile: string, orgConfig: Organization, outputPath: string): Promise; declare function mergeAutomaticPSPVars(config: PolicyBuilderConfig): PolicyBuilderConfig; declare function renderPSPDocs(config: PolicyBuilderConfig, paths: PolicyBuilderPaths): Promise; declare function renderPartials(config: PolicyBuilderConfig, paths: PolicyBuilderPaths): Promise; declare function generateMkdocsPages(config: PolicyBuilderConfig): string; declare function generateTOC(config: PolicyBuilderConfig): { name: string; file: string; }[]; declare function generateIndexTemplate(config: PolicyBuilderConfig): string; declare function renderIndexPage(config: PolicyBuilderConfig, paths: PolicyBuilderPaths, outputPath: string): Promise; declare const test: { fillTemplate: typeof fillTemplate; generateIndexTemplate: typeof generateIndexTemplate; generateMkdocsPages: typeof generateMkdocsPages; mergeAutomaticPSPVars: typeof mergeAutomaticPSPVars; }; export { renderIndexPage, renderMkdocsYAML, renderPSPDocs, renderPartials, renderTemplateFile, generateTOC, test, };