import { LINE_CAP, LINE_JOIN } from '@pixi/graphics'; import { FillStyle } from './FillStyle'; /** * @memberof PIXI.smooth */ export declare enum LINE_SCALE_MODE { NONE = "none", NORMAL = "normal", HORIZONTAL = "horizontal", VERTICAL = "vertical" } /** * @memberof PIXI.smooth */ export declare class LineStyle extends FillStyle { width: number; alignment: number; cap: LINE_CAP; join: LINE_JOIN; miterLimit: number; scaleMode: LINE_SCALE_MODE; clone(): LineStyle; copyTo(obj: any): LineStyle; /** * returns width multiplied by scaleMode */ packLineScale(): number; reset(): void; }