import { LicenseNoticeKey, ResolvedLicense } from "../resolveLicenses";
type ResolveLicensesOptions = {
    replace?: Record<string, string>;
    exclude?: string[];
};
export declare const resolveDependenciesForNpmProject: (packageJson: string, licensesMap: Map<LicenseNoticeKey, ResolvedLicense>, options?: ResolveLicensesOptions) => Promise<void>;
export {};
