/** * A color manipulation library useful for dynamically * mixing colors together. */ export declare const fade: (color: string, percentage: number) => string; export declare const mix: (color: string, background: string) => string;