export declare class CharacterSubstitutionInterface {
    cost: (c1: string, c2: string) => number;
    constructor(cost: (c1: string, c2: string) => number);
}
