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; let previous: PropTypes.Validator; let current: PropTypes.Validator; let onClick: PropTypes.Validator<(...args: any[]) => any>; } } import React from 'react'; import PropTypes from 'prop-types'; //# sourceMappingURL=ColorPickerHistory.d.ts.map