export interface ParsedChapterPreview { index: number; title: string; wordCount: number; } export interface ParsedDocxResponse { importId: string; chapters: ParsedChapterPreview[]; } export interface ImportChapterSelection { index: number; title: string; wordCount: number; selected: boolean; }