import WrappedDrawing from "./wrapped-drawing"; import type { Coord } from "./types"; import type { VisibleShape } from "./wrapped-drawing"; declare class WrappedPath extends WrappedDrawing { wrapper: HTMLDivElement; visibleShape: VisibleShape; constructor(graphie: any, points: ReadonlyArray, options: any); } export default WrappedPath;