import { RgbDefType } from "../../interfaces/types/RgbDefType"; export declare function checkValidColor(color: any): void; export declare function checkValidInitials(initials: any): void; export declare function isColorDark(red: number, green: number, blue: number): boolean; export declare function hexToRgb(hex: string): RgbDefType;