antd
Version:
An enterprise-class UI design language and React components implementation
11 lines (10 loc) • 325 B
TypeScript
import React from 'react';
import type { TourStepProps } from './interface';
interface TourPanelProps {
stepProps: TourStepProps;
current: number;
type: TourStepProps['type'];
indicatorsRender?: TourStepProps['indicatorsRender'];
}
declare const TourPanel: React.FC<TourPanelProps>;
export default TourPanel;