/** * Stdin utilities for Claude Code hooks. */ export interface IHookInput { trigger?: 'startup' | 'resume' | 'compact' | 'clear'; session_type?: 'startup' | 'resume' | 'compact' | 'clear'; } /** * Read hook input from stdin (JSON with trigger type and session info). * Times out after 100ms if no input (for manual testing). */ export declare function readStdin(): Promise; //# sourceMappingURL=stdin.d.ts.map