import { type Types } from '@callstack/licenses';
import type { CLIVisualizeOptions } from '../types/CLIOptions';
export type LicensesMappingResult = {
    licenses: Types.AggregatedLicensesMapping;
    repoRootPath: string;
    projectName: string;
};
export declare function generateLicensesMapping(options: CLIVisualizeOptions): {
    licenses: Types.AggregatedLicensesMapping;
    repoRootPath: string;
    projectName: any;
};
