import * as React from 'react'; export interface ColorProps { color: string; name: string; } declare const Color: React.SFC; export default Color;