import { Mat33, Vec2 } from '@js-draw/math';
interface Descriptions {
    zoomedIn: string;
    zoomedOut: string;
    movedLeft: string;
    movedRight: string;
    movedUp: string;
    movedDown: string;
    rotatedBy: (deg: number) => string;
}
declare const describeTransformation: (origin: Vec2, transform: Mat33, invertDirections: boolean, localizationTable: Descriptions) => string;
export default describeTransformation;
