/** * herdctl init - Router for init subcommands * * When invoked without a subcommand, asks whether to initialize a fleet or agent. */ export { updateGitignore } from "./init-utils.js"; export interface InitRouterOptions { yes?: boolean; force?: boolean; } /** * Router action for bare `herdctl init` (no subcommand). * Prompts the user to choose between fleet and agent initialization. */ export declare function initRouterAction(options: InitRouterOptions): Promise; //# sourceMappingURL=init.d.ts.map