/** * 훅 공유 유틸: timeout-protected stdin 읽기 * * event-based 패턴으로 Linux에서 hang을 방지합니다. * (for await of process.stdin은 일부 환경에서 hang 발생) */ /** stdin에서 JSON 데이터를 읽어 파싱. 실패 시 null 반환. */ export declare function readStdinJSON>(timeoutMs?: number): Promise;