export interface LevenshteinDistanceOption {
    deletionCost?: number;
    insertionCost?: number;
    substitutionCost?: number;
}
