declare function curriedAdjustHueWith1(color: string): string;
declare function curriedAdjustHue(
  degree: number | string,
): typeof curriedAdjustHueWith1;
declare function curriedAdjustHue(
  degree: number | string,
  color: string,
): string;

export default curriedAdjustHue;
