import { PropertyConfiguration, PropertyConfigurationBuilder } from './property-configuration'; export interface NumberPropertyConfiguration extends PropertyConfiguration { min(value: number | undefined): this; max(value: number | undefined): this; useGrouping(value: boolean): this; fractionDigits(min?: number, max?: number): this; rangeFrom(rangeFromField: keyof T): this; prefix(value: string): this; suffix(value: string): this; } export declare class NumberPropertyConfigurationBuilder extends PropertyConfigurationBuilder implements NumberPropertyConfiguration { prefix(value: string): this; suffix(value: string): this; max(value: number | undefined): this; min(value: number | undefined): this; useGrouping(value: boolean): this; fractionDigits(min?: number | null, max?: number | null): this; rangeFrom(rangeFromField: keyof T): this; }