import { SelectionMode } from './selection-modes';
import { MixedContentContext } from '../../../editor/widget-framework/mixed-content-context';
import { FieldSize } from '../../styling/field-size';
import { ClassificationSettings } from '../../common/classification-settings';
export declare class DynamicListEntity {
    Label: string | null;
    InstructionalText: string | null;
    CssClass: string | null;
    ListType: SelectionMode;
    SelectedContent: MixedContentContext | null;
    Required: boolean;
    Hidden: boolean;
    RequiredErrorMessage: string | null;
    OrderByContent: string | null;
    ClassificationSettings: ClassificationSettings | null;
    OrderBy: string | null;
    SortExpression: string | null;
    SfViewName: string;
    FieldSize: FieldSize;
    ColumnsNumber: number;
    ValueFieldName: string | null;
    SfFieldType: string;
    SfFieldName: string;
}
