/** * List Command Handlers * Handles listing characters, locations, chapters, plots, and issues */ import type { ParsedArgs, CommandContext } from '../types.js'; /** * Handle: /novel list characters */ export declare function handleListCharacters(args: ParsedArgs, context: CommandContext): Promise; /** * Handle: /novel list locations */ export declare function handleListLocations(args: ParsedArgs, context: CommandContext): Promise; /** * Handle: /novel list chapters */ export declare function handleListChapters(args: ParsedArgs, context: CommandContext): Promise; /** * Handle: /novel list plots */ export declare function handleListPlots(args: ParsedArgs, context: CommandContext): Promise; /** * Handle: /novel list issues */ export declare function handleListIssues(args: ParsedArgs, context: CommandContext): Promise; //# sourceMappingURL=list-handler.d.ts.map