declare function curriedTransparentizeWith1(color: string): string;
declare function curriedTransparentize(
  amount: number | string,
): typeof curriedTransparentizeWith1;
declare function curriedTransparentize(
  amount: number | string,
  color: string,
): string;

export default curriedTransparentize;
