import { PolicyBuilderConfig, PolicyBuilderPaths } from "./types"; declare function downloadCustomLogo(config: PolicyBuilderConfig, paths: PolicyBuilderPaths): Promise; declare function copyStaticAssets(paths: PolicyBuilderPaths): Promise; declare function writeFileAsync(filePath: string, content: string): Promise; declare function fileExistsSync(filepath: string): boolean; export { copyStaticAssets, downloadCustomLogo, fileExistsSync, writeFileAsync };