export default ColorPickerHistory;
declare function ColorPickerHistory({ show, current, previous, onClick }: {
    show: any;
    current: any;
    previous: any;
    onClick: any;
}): React.JSX.Element | null;
declare namespace ColorPickerHistory {
    namespace propTypes {
        let show: PropTypes.Validator<boolean>;
        let previous: PropTypes.Validator<object>;
        let current: PropTypes.Validator<object>;
        let onClick: PropTypes.Validator<(...args: any[]) => any>;
    }
}
import React from 'react';
import PropTypes from 'prop-types';
//# sourceMappingURL=ColorPickerHistory.d.ts.map