/** * Generates a Map of n-grams with their frequencies. * @example "apple" → {"app":1, "ppl":1, "ple":1} (n=3) */ export declare function NGramCountsTokenization(str: string, n: number): Map;