import type { CommandHandlerMap, CompletionFunc } from '@pnpm/cli.command'; import type { IncludedDependencies, PackageVulnerabilityAudit } from '@pnpm/types'; import type { InstallCommandOptions } from '../install.js'; export declare function rcOptionsTypes(): Record; export declare function cliOptionsTypes(): Record; export declare const shorthands: Record; export declare const commandNames: string[]; export declare const completion: CompletionFunc; export declare function help(): string; export type UpdateCommandOptions = InstallCommandOptions & { include?: IncludedDependencies; interactive?: boolean; latest?: boolean; packageVulnerabilityAudit?: PackageVulnerabilityAudit; }; export declare function handler(opts: UpdateCommandOptions, params?: string[], commands?: CommandHandlerMap): Promise;