/** * Install device-sync hooks into Claude Code's settings.json. * Merges with existing hooks without overwriting them. */ export declare function installHooks(): Promise; /** * Remove all device-sync hooks from Claude Code's settings.json. */ export declare function uninstallHooks(): Promise; /** * Return status information about installed hooks. */ export declare function getHooksStatus(): Promise<{ installed: boolean; settingsPath: string; hooks: { event: string; matcher: string; command: string; }[]; }>; //# sourceMappingURL=install.d.ts.map