import { Transform } from "./Transform";
import { Matrix } from "./Matrix";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class MatrixTransform extends Transform {
    static $t: Type;
    j: Matrix;
}
