declare function curriedShadeWith1(color: string): string;
declare function curriedShade(
  percentage: number | string,
): typeof curriedShadeWith1;
declare function curriedShade(
  percentage: number | string,
  color: string,
): string;

export default curriedShade;
