import GraphOptions from './GraphOptions'; /** * Implementation of the 'graph' markup element. */ export declare class Graph { private options; constructor(options?: GraphOptions); /** * @inheritDoc */ render(): HTMLElement; init(element: HTMLElement): void; private drag; private generateArrow; }