import { type UpdateCheckResult } from "./update-check.js"; export interface UpdateCommandDependencies { readonly check: () => Promise; readonly changelog: (version: string) => Promise; readonly confirm: (question: string) => Promise; readonly install: (args: readonly string[]) => Promise; readonly write: (message: string) => void; } export declare function installedNpmPrefix(modulePath?: string, platform?: NodeJS.Platform): string | undefined; export declare function runUpdateCommand(cliArgs: readonly string[], dependencies?: UpdateCommandDependencies): Promise; //# sourceMappingURL=update-command.d.ts.map