export interface CharListItem {
    base: string;
    chars: string[];
}
export declare type CharList = CharListItem[];
export declare type CharMap = Map<string, string>;
