import React from 'react';
import type { Candle, CandleChartDefaultProps, CandleChartRequiredProps, CandleToolTipData } from './candleChartTypes';
import './candleChart.css';
declare const CandleChart: {
    (props: Props): React.JSX.Element | null;
    defaultProps: CandleChartDefaultProps;
};
declare type Props = CandleChartDefaultProps & CandleChartRequiredProps;
export default CandleChart;
export type { Candle, CandleChartRequiredProps, CandleChartDefaultProps, CandleToolTipData };
