/** * Returns a string value for the lightened color. * * @example * background: lighten(0.2, '#CCCD64'), * background: lighten(0.2, 'rgba(204,205,100,0.7)'), */ export declare function lighten(amount: number, color: string): string;