import { FieldSize } from '../../../styling/field-size'; import { NumericRange } from '../../common/numeric-range'; export declare class TextEntityBase { Label: string | null; InstructionalText: string | null; PlaceholderText: string | null; PredefinedValue: string | null; Required: boolean | null; Hidden: boolean | null; RequiredErrorMessage: string | null; Range: NumericRange | null; TextLengthViolationMessage: string | null; FieldSize: FieldSize; CssClass: string | null; SfFieldType: string; SfFieldName: string; }