export type SelfUpdateKind = "up-to-date" | "same-major" | "major" | "invalid"; export declare function classifySelfUpdate(current: string, latest: string): SelfUpdateKind; export declare function parseCliVersion(output: string): string;