import Color from "./Color"; export default class Stroke { static DEFAULT: Stroke; static NONE: Stroke; private _color; private _width; private _linecap; private _linejoin; constructor(color?: Color, width?: number, linecap?: "butt" | "square" | "round", linejoin?: "miter" | "round" | "bevel"); readonly color: Color; readonly width: number; readonly linecap: "butt" | "square" | "round"; readonly linejoin: "miter" | "round" | "bevel"; }