import { Option } from "./option";
import { ChoiceField } from "./choiceField";
export declare class ComboBoxField extends ChoiceField {
    'options': Array<Option>;
    'activeState': string;
    'editable': boolean;
    'spellCheck': boolean;
    static discriminator: any;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
