import type { MergedOutdatedPkg } from '@teambit/dependency-resolver'; /** * Lets the user pick the packages that should be updated. */ export declare function pickOutdatedPkgs(outdatedPkgs: MergedOutdatedPkg[]): Promise; /** * Groups the outdated packages and makes choices for enquirer's prompt. */ export declare function makeOutdatedPkgChoices(outdatedPkgs: MergedOutdatedPkg[]): { message: string; choices: unknown; }[];