UNPKG

grepsr-ui-elements

Version:

24 lines (23 loc) 521 B
/// <reference types="react" /> import PropTypes from "prop-types"; interface HighchartsProps { options: any; } export { HighchartsProps }; declare const GrepsrHighcharts: { (props: HighchartsProps): JSX.Element; defaultProps: { options: { title: { text: string; }; series: { data: number[]; }[]; }; }; propTypes: { options: PropTypes.Validator<Object>; }; }; export default GrepsrHighcharts;