declare function swapColorValues>(colors: T): Record; /** * Get optimal contrasting color (black or white) for text on a given background. * Uses WCAG contrast ratios to determine which provides better readability. */ declare function getContrastingColor(backgroundColor: string): string; export { swapColorValues, getContrastingColor };