import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
import { Observable } from 'rxjs';
import { ContextChartService } from '../../chart.service';
import * as i0 from "@angular/core";
export declare class XPlotLinesComponent implements OnInit, OnDestroy {
    private readonly context;
    private readonly cdr;
    value: number;
    value$: Observable<number>;
    color: string;
    dashType: 'solid' | 'dash';
    width: number;
    path: string;
    y: number;
    get dasharray(): number[];
    get view(): import("../../types").ChartView;
    private readonly destroy$$;
    constructor(context: ContextChartService, cdr: ChangeDetectorRef);
    ngOnInit(): void;
    ngOnDestroy(): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<XPlotLinesComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<XPlotLinesComponent, "g[aclXPlotLines]", never, { "value": { "alias": "value"; "required": false; }; "color": { "alias": "color"; "required": false; }; "dashType": { "alias": "dashType"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, {}, never, never, false, never>;
}
