import { TemplateResult } from 'lit'; import { TcBase } from './tc-base.js'; import { ValueShapeCircle } from './types.js'; export declare class TcLine extends TcBase { min: number; weight: number; inside: boolean; point?: number; private otherShapes; static styles: import("lit").CSSResultGroup[]; protected computeChartShapes(): void; protected chartTemplate(): TemplateResult; protected tooltipTemplate(): TemplateResult; protected findValueShapeAtPosition(x: number, y: number): ValueShapeCircle | undefined; protected hasEnoughValueShapes(): boolean; }