import { Annotation } from '../annotations/types'; export type PositionLineStyle = "entry" | "sl" | "tp"; export interface PositionLineOptions { id?: string; price: number; label?: string; color?: string; style?: PositionLineStyle; interactive?: boolean; } export declare function buildPositionLineAnnotation(options: PositionLineOptions, id: string): Annotation;