import { PointModel } from "./models/PointModel"; /** * @author Dylan Vorster */ export declare class Toolkit { static TESTING: boolean; static TESTING_UID: number; /** * Generats a unique ID (thanks Stack overflow :3) * @returns {String} */ static UID(): string; /** * Finds the closest element as a polyfill * * @param {Element} element [description] * @param {string} selector [description] */ static closest(element: Element, selector: string): any; static generateLinePath(firstPoint: PointModel, lastPoint: PointModel): string; static generateCurvePath(firstPoint: PointModel, lastPoint: PointModel, curvy?: number): string; static generateDynamicPath(pathCoords: number[][]): any; }