export interface INg2MaskOptions {
    specialCharacters: string[];
    patterns: {
        [key: string]: RegExp;
    };
}
