/** * Parse color string to r/g/b value. * If the given color is not in a recognized format, return null */ export default function parseColor(color: string): [number, number, number] | null;