#!/usr/bin/env node /** * Postinstall script for CCanywhere * Automatically initializes user configuration and registers Claude Code hooks * when installed globally */ /** * Check if CCanywhere is installed globally * Uses the flag set by postinstall-wrapper.cjs for consistency */ declare function isGlobalInstall(): boolean; /** * Check if user configuration exists */ declare function checkUserConfig(): Promise; /** * Register Claude Code hooks */ declare function registerClaudeHooks(): Promise; /** * Main postinstall logic */ declare function main(): Promise; export { main, isGlobalInstall, checkUserConfig, registerClaudeHooks }; //# sourceMappingURL=postinstall.d.ts.map