declare class Rect {
  _class: 'rect';
  constrainProportions: boolean;
  height: number;
  width: number;
  x: number;
  y: number;
  constructor(args?: any, json?: any);
}

export = Rect;
