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