/// <reference path="../../vendor/react/react.d.ts" />
//@ts-ignore
import React from 'react';
import { ControlBase } from './ControlBase';
//@ts-ignore
import { ComboBox } from '@grapecity/core-ui';
/**
 * The control is used by the FormFiller feature.
 **/
export declare class ChoiceControl extends ControlBase {
    _comboBoxRef: ComboBox | null;
    render(): React.JSX.Element;
    getDisplayValue(fieldValue: string | string[]): string;
}
