export interface INumberFormatProps {
    value: number;
    prefix?: string;
    suffix?: string;
    thousandSeparator?: boolean;
    decimalSeparator?: ',' | '.';
    decimalScale?: number;
    fixedDecimalScale?: boolean;
    allowNegative?: boolean;
    format?: string;
}
