/** * Given a string calculates how many times each line in the string is repeated * @param text The string to analyze * @returns The repeating line, the number of times it repeats, total number of lines */ export declare function calculateLineRepetitionStats(text: string): { numberOfRepetitions: number; mostRepeatedLine: string; totalLines: number; }; /** * Return whether the given token array ends in a repetition of a pattern. * Controlling the necessary pattern length is set in the configs array. */ export declare function isRepetitive(tokens: readonly string[]): boolean; //# sourceMappingURL=anomalyDetection.d.ts.map