import { ArrayData } from './array-wrapper'; /** * @description this can consume lot of memory, need to manually invoke edit_distance.clear() to free the caches * */ export declare const edit_distance: ((s: string | ArrayData | A[], t: string | ArrayData | A[], loop?: boolean) => number) & { clear: () => void; };