/** * Create Command Handlers * Handles character, location, chapter, and plot thread creation */ import type { ParsedArgs, CommandContext } from '../types.js'; /** * Handle: /novel create character */ export declare function handleCreateCharacter(args: ParsedArgs, context: CommandContext): Promise; /** * Handle: /novel create location */ export declare function handleCreateLocation(args: ParsedArgs, context: CommandContext): Promise; /** * Handle: /novel create chapter */ export declare function handleCreateChapter(args: ParsedArgs, context: CommandContext): Promise; /** * Handle: /novel create plot */ export declare function handleCreatePlot(args: ParsedArgs, context: CommandContext): Promise; //# sourceMappingURL=create-handler.d.ts.map