Files
2026-01-16 01:51:36 +00:00

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;