import { Matrix2x2 } from './Matrix2x2'; import { Vector2 } from './Vector2'; export declare type Transform = Readonly<{ matrix: Matrix2x2; translation: Vector2; }>;