export interface Mask { dropSpecialCharacters?: boolean | undefined; prefix?: string; suffix?: string; mask: string | undefined; showMaskTyped?: boolean; allowNegativeNumbers?: boolean; placeHolderCharacter?: string | null; clearIfNotMatch?: boolean; specialCharacters?: Array | null; thousandSeparator?: string; decimalMarker?: string; customPatterns?: any; validation?: boolean; }