import Plotly from 'plotly.js-basic-dist';
import * as React from 'react';
export declare type PlotlyWrapperProps = {
    data: Plotly.Data[];
    layout?: Partial<Plotly.Layout>;
    config?: Partial<Plotly.Config>;
    useResizeHandler?: boolean;
    className?: string;
    containerWidth?: number;
    plotStyle?: React.CSSProperties;
};
declare const PlotlyWrapper: React.FC<PlotlyWrapperProps>;
export default PlotlyWrapper;
