import type { NGramType } from './'; export declare const getTokens: (str: string) => string[]; export declare const getNgrams: (n: number, str: string, onGramFound: (gram: NGramType) => void) => void;