import { ChoiceEntityBase } from '../interfaces/choice-entity-base'; import { FieldSize } from '../../styling/field-size'; import { ChoiceOption } from '../common/choice-option'; export type DropdownSorting = 'Manual' | 'Alphabetical'; export declare class DropdownEntity extends ChoiceEntityBase { Label: string | null; Choices: ChoiceOption[] | null; Sorting: DropdownSorting; FieldSize: FieldSize; }