/** * hook:log CLI command. * * Reads a hook payload from stdin, extracts the relevant fields for the * given hook type, formats a structured log line, and appends it to the * specified log file. This consolidates the field-extraction logic that * was previously duplicated across 13 logger.sh shell scripts. */ export interface HookLogCommandArgs { hookType: string; logFile: string; json: boolean; } export declare function handleHookLog(args: HookLogCommandArgs): Promise; //# sourceMappingURL=log.d.ts.map