/**
 * Creates Dot files dot-code(data_lineage.dot) and diagram(data_lineage.svg)
 * @param {string[]} folderList- dot files will be generated against provided folderList
 * @param {string} outDirectory- the name of the output folder for dot files.
 * @param {string} serverUrl- prefixes with links to Libs(Inputs/Outputs)
 */
export declare function createDotFiles(folderList: string[], outDirectory: string, serverUrl: string): Promise<void>;
