import { ChoiceOption } from '../common/choice-option'; export declare class ChoiceEntityBase { Label: string | null; InstructionalText: string | null; Choices: ChoiceOption[] | null; Required: boolean; Hidden: boolean; RequiredErrorMessage: string; SfViewName: string | null; CssClass: string | null; SfFieldType?: string; SfFieldName?: string; }