1 | declare function curriedTintWith1(color: string): string;
|
2 | declare function curriedTint(
|
3 | percentage: number | string,
|
4 | ): typeof curriedTintWith1;
|
5 | declare function curriedTint(
|
6 | percentage: number | string,
|
7 | color: string,
|
8 | ): string;
|
9 |
|
10 | export default curriedTint;
|