import type { RawMatrix4 } from '../mat4/RawMatrix4'; import type { RawMatrix3 } from './RawMatrix3'; /** * Create a matrix3 from matrix4. */ export declare function mat3FromMat4(source: RawMatrix4): RawMatrix3;