#!/usr/bin/env node import type { DoctorReport } from "./codex/types.js"; import type { Locale, Platform } from "./knowledge/schema.js"; export declare function parsePlatform(value: string | undefined): Platform | undefined; export declare function detectPlatform(text?: string, explicit?: Platform, runtimePlatform?: NodeJS.Platform, wslDistro?: string | undefined): Platform; export declare function normalizeLocale(value: string): Locale; export declare function parseIntegerOption(value: string, name: string, minimum: number, maximum: number): number; export declare function parseCodexVersionOption(value: string | undefined): string | undefined; export declare function readStdin(): Promise; export declare function parseDoctorText(text: string, origin: string): { report?: DoctorReport; text: string; }; export declare function readInput(path: string): Promise<{ report?: DoctorReport; text: string; }>; export declare function main(args?: string[]): Promise; //# sourceMappingURL=cli.d.ts.map