import { ControlType, FieldBase, FieldBaseOptions } from './field-base'; export interface Option { value: string; label: string; } export interface DropDownFieldOptions extends FieldBaseOptions { options: Option[]; } export declare class DropdownField extends FieldBase { readonly controlType: ControlType; options: Option[]; constructor(options: DropDownFieldOptions); }