import { NumericRange } from '../common/numeric-range';
import { PrefixOrSuffix } from './interfaces/prefix-or-suffix';
export declare class NumberFieldEntity {
    Label: string | null;
    InstructionalText: string | null;
    PlaceholderText: string | null;
    PredefinedValue: number | null;
    PrefixOrSuffix: PrefixOrSuffix | null;
    Required: boolean;
    Hidden: boolean | null;
    RequiredErrorMessage: string | null;
    AllowDecimals: boolean;
    ValueRange: NumericRange | null;
    ValueRangeViolationMessage: string;
    SfViewName: string;
    FieldSize: string;
    CssClass: string | null;
    SfFieldType: string;
    SfFieldName: string;
}
