import React from 'react'; import { ColorType } from './QuickPanel'; interface HistoryProps { colorHistory?: ColorType[]; maxHistory?: number; onHistoryClick?: (color: ColorType) => void; prefixCls?: string; } export default class History extends React.Component { static propTypes: { colorHistory: any; maxHistory: any; onHistoryClick: any; prefixCls: any; }; render(): JSX.Element; } export {};