import { Point2D } from '@obliczeniowo/elementary/classes';
export declare abstract class Transform {
    abstract toString(): string;
}
export declare class Rotate extends Transform {
    rotatePoint: Point2D | null;
    angle: number;
    constructor(angle: number, rotatePoint?: Point2D | null);
    toString(): string;
}
