/** * Handler for /novel init command * * Designed to run safely in automated / non-interactive environments (e.g. * Claude Code's Bash tool, CI). The handler NEVER blocks on stdin unless it * detects a real interactive TTY. When run non-interactively with missing * metadata it auto-derives sensible defaults and reports them rather than * hanging on a prompt. Pass --json for a machine-readable result. */ import type { ParsedArgs, CommandContext } from '../types.js'; export declare function handleInit(args: ParsedArgs, context: CommandContext): Promise; //# sourceMappingURL=init-handler.d.ts.map