/** * Generates a Set of unique n-grams from a string. * @example "apple" → {"app", "ppl", "ple"} (n=3) */ export declare function NGramSetTokenization(str: string, n: number): Set;