import * as mat from "transformation-matrix"; import { Vector } from "./interface"; /** * Decompose transformation matrix to translate, rotationDeg and scale. * * @param trans Decomposing transformation matrix. */ export declare const decomposeTransform: (trans: mat.Matrix) => [Vector, number, Vector];