/** * Shades a color by mixing it with black. `shade` can produce * hue shifts, where as `darken` manipulates the luminance channel and therefore * doesn't produce hue shifts. * * @example * background: shade(0.25, '#00f') */ export declare function shade(percentage: number, color: string): string;