import { Configuration, SASJsFileType, Target } from '../types'; import { CompileTree } from '../compileTree'; interface LoadDependenciesParams { filePath?: string; fileContent: string; configuration?: Configuration; target?: Target; type: SASJsFileType; programFolders: string[]; macroFolders: string[]; buildSourceFolder: string; binaryFolders: string[]; macroCorePath: string; compileTree: CompileTree; } export declare const loadDependenciesFile: ({ filePath, fileContent, configuration, target, type, programFolders, macroFolders, buildSourceFolder, macroCorePath, binaryFolders, compileTree }: LoadDependenciesParams) => Promise; export declare const getAllDependencies: (filePaths: string[], compileTree?: CompileTree | undefined) => Promise; export {};