import { InjectionToken } from '@angular/core'; export interface IConfig { sufix: string; prefix: string; clearIfNotMatch: boolean; showTemplate: boolean; showMaskTyped: boolean; dropSpecialCharacters: boolean | string[]; specialCharacters: string[]; patterns: { [character: string]: { pattern: RegExp; optional?: boolean; }; }; } export declare type optionsConfig = Partial; export declare const config: InjectionToken; export declare const NEW_CONFIG: InjectionToken; export declare const INITIAL_CONFIG: InjectionToken; export declare const initialConfig: IConfig;