import { Point2D } from './Point2D.entity'; export declare type Homothetie = { offset?: Point2D; factor?: Point2D; isHexa?: boolean; }; export declare const Homothetie: { forward(homothetie: Homothetie, pos: Point2D): Point2D; backward(homothetie: Homothetie, pos: Point2D): Point2D; };