import { ShapeType, Enabled, ItemType, AdviserPlacementType, ChildrenPlacementType, TextOrientationType } from '../enums'; import { Size } from '../structs'; export declare class OrgItemConfig { id: number | string | null; parent: number | string | null; title: string | null; description: string | null; image: string | null; context: any | null; itemTitleColor: string; minimizedItemShapeType: ShapeType | null; groupTitle: string | null; groupTitleColor: string; isVisible: Boolean; isActive: Boolean; hasSelectorCheckbox: Enabled; hasButtons: Enabled; itemType: ItemType; adviserPlacementType: AdviserPlacementType; childrenPlacementType: ChildrenPlacementType; levelOffset: number | null; placeAssistantsAboveChildren: Enabled; placeAdvisersAboveChildren: Enabled; templateName: string | null; showCallout: Enabled; calloutTemplateName: string | null; label: string | null; showLabel: Enabled; labelSize: Size | null; labelOrientation: TextOrientationType; constructor(config?: Partial); }