/**
 * Check if the color is a valid hex color
 */
export declare function isHexColor(color: string): boolean;
/**
 * Convert hex color to "r, g, b" string
 */
export declare function rgbFromHex(hex: string): string;
