export declare class NumericInputFormat {
    locale: string;
    decimalMarker: string;
    constructor();
    unformatValue(value: any): any;
    formatValue(value: string | number | null | undefined): string;
}
