declare class CurvePoint {
  _class: 'curvePoint';
  cornerRadius: number;
  curveFrom: string;
  curveTo: string;
  hasCurveFrom: boolean;
  hasCurveTo: boolean;
  point: string;

  constructor(args?: any, json?: any);

}

export = CurvePoint;
