/**
 * Mixes two colors together. Taken from sass's implementation.
 */
declare function mix(color1: string, color2: string, weight: number): string;
export default mix;
