import { TemplateRef } from '@angular/core'; import { ShapeType, LineType } from '../enums'; import { Size, Thickness } from '../structs'; export declare class TemplateConfig { name: string | null; isActive?: Boolean; itemSize?: Size; itemBorderWidth?: number; itemTemplate?: TemplateRef | null; minimizedItemShapeType?: ShapeType | null; minimizedItemSize?: Size; minimizedItemCornerRadius?: number | null; minimizedItemLineWidth?: number; minimizedItemBorderColor?: string | null; minimizedItemLineType?: LineType; minimizedItemFillColor?: string | null; minimizedItemOpacity?: number; highlightPadding?: Thickness; highlightBorderWidth?: number; highlightTemplate?: TemplateRef | null; cursorPadding?: Thickness; cursorBorderWidth?: number; cursorTemplate?: TemplateRef | null; buttonsTemplate?: TemplateRef | null; constructor(config?: Partial); }