interface Color { value: string; name: string; romanized: string; names: string[]; hue: number; saturation: number; lightness: number; } declare const colors: Color[]; declare function getColors(name: string): Color[]; export { Color, colors, getColors };