/** Style fingerprint profile extracted from reference text. */ export interface StyleProfile { readonly avgSentenceLength: number; readonly sentenceLengthStdDev: number; readonly avgParagraphLength: number; readonly paragraphLengthRange: { readonly min: number; readonly max: number; }; readonly vocabularyDiversity: number; readonly topPatterns: ReadonlyArray; readonly rhetoricalFeatures: ReadonlyArray; readonly sourceName?: string; readonly analyzedAt?: string; } //# sourceMappingURL=style-profile.d.ts.map