import { type CompletionFunc } from '@pnpm/command'; 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 & { interactive?: boolean; latest?: boolean; }; export declare function handler(opts: UpdateCommandOptions, params?: string[]): Promise;