/** * Returns all suffixes and prefixes of a term * * This is used so that searching for "shop" also finds "webshop", because it ends with "shop". */ export declare function tokenize(term: string, minLength: number): string[];