export declare enum AttributeType { select = 0, input = 1, bool = 2, backImgSelector = 3 } export declare enum AttributeSeries { slot = 0, prop = 1, style = 2, model = 3, method = 4 } export default class AttributeItem { key: string; label: string; type: AttributeType; series: AttributeSeries; options: Array; value: any; constructor(key: string, label: string, value: any, series: AttributeSeries, type: AttributeType, options?: Array); static fromObject(obj: Object): AttributeItem; }