import type { Matrix } from '../jspdf.js'; export type Point = number[]; export type Rect = number[]; export declare function getAngle(from: Point, to: Point): number; export declare const cToQ: number; export declare function toCubic(from: Point, to: Point): Point; export declare function normalize(v: Point): Point; export declare function getDirectionVector(from: Point, to: Point): Point; export declare function addVectors(v1: Point, v2: Point): Point; export declare function multVecMatrix(vec: Point, matrix: Matrix): Point; //# sourceMappingURL=geometry.d.ts.map