/** * Registration command * Handles registration of CCanywhere hooks with Claude Code */ import { Command } from 'commander'; interface RegisterOptions { force?: boolean; remove?: boolean; status?: boolean; manual?: boolean; } /** * Registration command handler */ export declare function registerCommand(options: RegisterOptions): Promise; /** * Create the register command */ export declare function createRegisterCommand(): Command; export default createRegisterCommand; //# sourceMappingURL=register.d.ts.map