/** * Returns a string value for the darkened color. * * @example * background: darken(0.2, '#FFCD64') * background: darken(0.2, 'rgba(255,205,100,0.7)') */ export declare function darken(amount: number, color: string): string;