/**
 * Parses the output from `npx expo install --check --json` and formats dependency
 * version mismatches into a structured, color-coded report.
 *
 * @param stdout - Raw stdout from `npx expo install --check --json` command
 * @param issues - Array to append formatted issue messages to
 * @param projectMajorSdkVersion - The major version of the project's SDK
 */
export declare function parseInstallCheckOutput(stdout: string, issues: string[], projectMajorSdkVersion: number): void;
