export declare class Color { static opacity(color: string, opacity: number): string; static darken(color: string, percentage?: number): string; static lighten(color: string, percentage?: number): string; static rgb(color: string): { r: number; g: number; b: number; }; }