import { Component, CSSProperties } from "react"; import { ColorPickerProps } from "../../.."; import { Classes } from "reactcss"; export interface AlphaPickerStylesProps { picker: CSSProperties; alpha: CSSProperties; } export interface AlphaPickerProps extends ColorPickerProps { height?: string; width?: string; styles?: Partial>; } export default class AlphaPicker extends Component { }