import React from 'react'; import { IColor } from './model'; interface IAlphaProps { value: IColor; onChange: (color: IColor) => void; } export declare const Alpha: React.MemoExoticComponent<(props: IAlphaProps) => JSX.Element>; export {};