import { CanvasElementOptions } from '..'; export declare enum LineStrokeStyle { NORMAL = "normal", DASHED = "dashed" } export declare enum LineHeadStyle { NONE = "none", ARROW = "arrow", BONE = "bone" } export interface LineOptions extends CanvasElementOptions { strokeStyle?: LineStrokeStyle; headStyle?: LineHeadStyle; opacity?: number; strokeWidth: number; color: number; from: { x: number; y: number; }; to: { x: number; y: number; }; } export declare const defaultLineOptions: { temporary: boolean; strokeStyle: LineStrokeStyle; headStyle: LineHeadStyle; opacity: number; };