import { Component } from "../component"; import { ChartModel } from "../../model"; import Position from "@carbon/utils-position"; export declare class Threshold extends Component { type: string; threshold: any; thresholdClass: string; thresholdIdentifierClass: string; label: any; positionService: Position; constructor(model: ChartModel, services: any, configs: any); render(animate?: boolean): void; getFormattedValue(): any; appendThresholdLabel(): void; setThresholdLabelPosition(): void; addEventListeners(): void; }