import { Hook } from '@oclif/core'; export declare interface CommandContent { command: string; topic?: string; alias?: string; } export declare const hook: Hook.Prerun; export declare function parseCommandContent(cmdInfo: { id: string; aliases: string[]; pluginAlias?: string; }): CommandContent; /** * Triggers a background check for a newer CLI version (non-blocking). * The result is cached and consumed by the postrun hook for auto-upgrade. */ export declare function checkForNewVersionInBackground(): void;