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