export declare const COULD_NOT_MAP_REPOSITORY_CATEGORY = "COULD_NOT_MAP_REPOSITORY"; type CsvRecord = Record; interface CategoryOutputs { dependenciesByCategory: CsvRecord[]; dependenciesSourcesByCategory: CsvRecord[]; } export declare function addCategoriesToBlackDuckReports(reportDir: string, repoCategoriesPath: string): Promise; export declare function addCategoriesToReports(dependencies: CsvRecord[], dependenciesSources: CsvRecord[], repoCategories: Map): CategoryOutputs; export declare function parseRepoCategories(raw: string): Map; export {};