declare function createAhoCorasick(keys: string[] | Set<string> | readonly string[]): (text: string) => boolean;

export { createAhoCorasick };
