import type { TLBounds, TLShape, TLTransformInfo } from '@tldraw/core'; /** * Transform a rectangular shape. * @param shape * @param bounds * @param param2 */ export declare function transformRectangle(shape: T, bounds: TLBounds, { initialShape, transformOrigin, scaleX, scaleY }: TLTransformInfo): { size: number[]; point: number[]; rotation: number | undefined; } | { point: number[]; size: number[]; rotation?: undefined; }; //# sourceMappingURL=transformRectangle.d.ts.map