/**
 * Syntactic and semantic analysis metrics
 */
export declare function calculateSyntacticComplexity(sentences: string[]): number;
export declare function calculateSemanticCoherence(sentences: string[]): number;
export declare function calculateNGramRepetition(words: string[]): number;
export declare function calculateBigramUnusualness(words: string[]): number;
