#!/usr/bin/env node /** * Hook handler for warning about nested Nori installations * * This script is called by Claude Code SessionStart hook. * It checks for Nori installations in ancestor directories and warns the user. */ /** * Output hook result with systemMessage * @param args - Configuration arguments * @param args.message - Message to output */ declare const logToClaudeSession: (args: { message: string; }) => void; /** * Main entry point * @param args - Configuration arguments * @param args.installDir - Custom installation directory (optional, for testing) */ export declare const main: (args?: { installDir?: string | null; }) => Promise; export { logToClaudeSession }; //# sourceMappingURL=nested-install-warning.d.ts.map