import type { RawMatrix3 } from './RawMatrix3'; /** * Return an inverse of given mat3. * * Yoinked from Three.js */ export declare function mat3Inverse(m: RawMatrix3): RawMatrix3;