export declare function createOneSideRoundedRectPath({
  x,
  y,
  width,
  height
}: {
  x: number;
  y: number;
  width: number;
  height: number;
}, radius: number, side: 'left' | 'right' | 'top' | 'bottom'): string;