UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

9 lines (8 loc) 297 B
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;