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