export declare const TOP = "top"; export declare const BOTTOM = "bottom"; export declare const LEFT = "left"; export declare const RIGHT = "right"; export declare type DIRECTION = "top" | "bottom" | "left" | "right"; export declare type STROKE_LINEJOIN = "bevel" | "round" | "miter" | "miter-clip" | "arcs"; export declare const CLASS_NAME = "__shape-svg";