export type Color = 'default' | 'random'; export declare const colors: string[]; export declare function getRealColor(color: Color): string | undefined; export declare function getInitials(fullName: string): string;