/// <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;
