import type { YarnLock, YarnLockEntrySummary } from './types';
export declare function parseEntry(depNameConstraint: string): {
    entryName: string;
    constraint: string;
} | null;
export declare function getYarn1LockedDependencies(yarnLock: YarnLock, depName: string, currentVersion: string): YarnLockEntrySummary[];
export declare function getYarn2LockedDependencies(yarnLock: YarnLock, depName: string, currentVersion: string): YarnLockEntrySummary[];
export declare function getLockedDependencies(yarnLock: YarnLock, depName: string, currentVersion: string): YarnLockEntrySummary[];
