/** * Returns true when `cmd` resolves to an executable on PATH. * Uses `which` / `where` under the hood with metacharacter guard + cache. */ export declare function isCliAvailable(cmd: string): boolean;