import React from 'react'; interface ColorIconProps { type: 'color' | 'bg'; dayTime: 'light' | 'dark'; color: string | undefined; } declare const ColorIcon: React.FC; export default ColorIcon;