/// <reference types="react" />
interface ColorProps {
    name: string;
    color: string;
    note?: string;
}
declare function Color(props: ColorProps): JSX.Element;
export default Color;
