import { Command } from 'commander'; /** * Transforms upgrade guidance CSV content * @param upgradeRaw Raw upgrade guidance CSV content * @returns Transformed upgrade guidance CSV content */ export declare function transformUpgradeGuidance(upgradeRaw: string): string; /** * Transforms raw Black Duck CSV exports into four cleaned and shareable CSV reports * @param reportDir Directory containing Black Duck report files * @param options Command options including optional basePath and pathMappings */ export declare function transformBlackDuckReports(reportDir: string, options?: { basePath?: string; pathMappings?: string; }): Promise; export declare const transformBlackDuckReportsCommand: Command;