import LineOptions from './LineOptions'; /** * Implementation of the 'line' markup element. */ export declare class Line { private options; constructor(options?: LineOptions); /** * @inheritDoc */ render(): HTMLElement; init(element: HTMLElement): void; private xAxis; private yAxis; private hover; private grid; }