import { AttributeModel } from './attribute.model';
export declare class ItemModel {
    code: string;
    label: string;
    categoryId: number;
    children: ItemModel[];
    attrValues: AttributeModel[];
    constructor();
}
