#!/usr/bin/env node /** * Hook handler for welcoming users to the onboarding wizard * * This script is called by Claude Code SessionStart hook. * It detects if the current profile is an onboarding wizard and displays a welcome message. */ /** * 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=onboarding-wizard-welcome.d.ts.map