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