export declare class Matrix3 { /** * @param left * @param right */ static multiply(left: Array, right: Array): number[]; static identity(): number[]; static translate(matrix: Array, tx: number, ty: number): number[]; static rotate(matrix: Array, angleInRadians: number): number[]; static scale(matrix: Array, sx: number, sy: number): number[]; }