/** * Init & Uninit CLI Command Groups * * init: Setup and shell integration (cli, daemon, all, completions) * uninit: Remove integrations (cli, daemon) */ import type { Command } from 'commander'; /** * Register the init command group * * Subcommands: cli, daemon, all, completions */ export declare function registerInitCommands(program: Command): void; /** * Register the uninit command group * * Subcommands: cli, daemon */ export declare function registerUninitCommands(program: Command): void; //# sourceMappingURL=init.d.ts.map