import { ShapeType, Enabled, TextOrientationType, PlacementType, AdviserPlacementType } from '../enums'; import { Size } from '../structs'; export declare class FamItemConfig { id: number | String | null; parents: Array; title: string | null; description: string | null; image: string | null; context: any | null; itemTitleColor: String; minimizedItemShapeType: ShapeType | null; groupTitle: string | null; groupTitleColor: String; isActive: Boolean; hasSelectorCheckbox: Enabled; hasButtons: Enabled; templateName: string | null; showCallout: Enabled; calloutTemplateName: string | null; label: string | null; showLabel: Enabled; labelSize: Size | null; labelOrientation: TextOrientationType; labelPlacement: PlacementType; primaryParent: number | String | null; relativeItem: number | String | null; position: number | null; placementType: AdviserPlacementType; matrixId: string | null; addToMatrix: Boolean; constructor(config?: Partial); }