import React from 'react';
import type { TourProps, TourStepProps } from './interface';
import PurePanel from './PurePanel';
export type { TourProps, TourStepProps };
declare const Tour: React.FC<TourProps> & {
    _InternalPanelDoNotUseOrYouWillBeFired: typeof PurePanel;
};
export default Tour;
