/** * Functions to apply Cognitive Complexity to files and folders. */ import { FileOutput, FolderOutput } from "../../shared/types"; /** * @param entry A file system entry path */ export declare function getFileOrFolderOutput(entryPath: string): Promise; export declare function getFileOutput(filePath: string): Promise; export declare function getSourceOutput(sourceCode: string, fileName?: string): FileOutput; export declare function getFolderOutput(folderPath: string): Promise; /** * @param entryPath Relative to cwd */ export declare function programOutput(entryPath: string): Promise;