export type LineCap = 'butt' | 'round' | 'square'; export type LineJoin = 'round' | 'bevel' | 'miter'; export declare const closePointEps = 0.0001; export declare const curveEps = 0.0001;