import { Path } from './Path'; import { PathOptions } from '@src/models/PathOptions'; import { Point } from '@src/models/Path'; export declare class ArcPath extends Path { constructor(options: PathOptions); /** * Returns an SVG path (or what's supposed to be in attribute `d`) * You can extend this function and add your own logic to draw whatever path you'd like. * @param endBbox bbox of the end dom element * @param startBbox bbox of the start dom element * @returns path string */ getPath(): string; svgPath(points: Point[]): string; }