/** Installed dsh-code version exposed by the terminal header. */ /** Version of the installed dsh-code package. */ export declare const DSH_CODE_VERSION: string; /** Header brand line: hide a missing-manifest fallback so we never paint v0.0.0. */ export declare function headerBrandTitle(version?: string): string; /** * Resolve the running dsh CLI host's version from its entry file * (`process.argv[1]`, e.g. `.../@deepseek-ai/dsh/lib/bin.js` or a PATH * symlink `.../bin/dsh` → that file). Only a manifest literally named * `@deepseek-ai/dsh` counts, so an unrelated entry (vitest, a plain node * script) resolves to undefined instead of faking a kernel version. */ export declare function resolveDshHostVersion(entry?: string | undefined): string | undefined; /** * The dsh kernel version the TUI runs on, memoized after the first probe: the * host process never changes within a run, and the header reads this on every * Static replay. */ export declare function dshKernelVersion(): string | undefined; /** Test-only: forget the memoized kernel version so a new argv can be probed. */ export declare function _resetDshKernelVersionForTests(): void;