export interface TextboxCurrencyConfigInterface { allowNegative?: boolean | null; allowZero?: boolean | null; decimal?: string | null; precision?: number | null; prefix?: string | null; suffix?: string | null; thousands?: string | null; notNullable?: boolean | null; min?: number | null; max?: number | null; }