import { ChartFactory } from '../report/graphical-report/chart/chart-factory'; import { AxElement } from './ax-element'; export declare class ElementFactory { chartFactory: ChartFactory; constructor(); getElementObject(element: AxElement): AxElement; /**function to create axElements object with existing values * *@param AxElement * */ createElement(elements: Array): Array; }