export interface PlatformCliStatus { binary: string; use: string; login: string; install: string; installed: boolean; /** Found only in the project's node_modules/.bin — invoke via `npx`. */ local: boolean; } /** * Platforms `cwd` uses, each flagged installed/missing. Order follows the * registry so the rendered section is stable across sessions (cached prefix). */ export declare function detectPlatformClis(cwd: string, pathEnv?: string): PlatformCliStatus[]; export declare function renderPlatformClisSection(clis: readonly PlatformCliStatus[]): string; //# sourceMappingURL=platform-clis.d.ts.map