/**
* Lightens a color by a given amount. This is equivalent to
* `darken(color, -amount)`
*
* @param amount The amount to darken, given as a decimal between 0 and 1
*/declarefunctionlighten(color: string, amount: number): string;
exportdefault lighten;