export type PredefinedColors = | 'primary' | 'success' | 'warning' | 'danger'; export type LiteralUnion = T | (U & Record); export type Color = LiteralUnion; export type ComponentRef = Function | HTMLElement | string | null;