8 lines
240 B
TypeScript
8 lines
240 B
TypeScript
import React from 'react';
|
|
import type { TourProps } from './interface';
|
|
import PurePanel from './PurePanel';
|
|
declare const Tour: React.FC<TourProps> & {
|
|
_InternalPanelDoNotUseOrYouWillBeFired: typeof PurePanel;
|
|
};
|
|
export default Tour;
|