import React from 'react'; import type { TourProps, TourSemanticAllType, TourStepProps } from './interface'; interface TourPanelProps { stepProps: Omit & { closable?: Exclude; }; current: number; type: TourProps['type']; indicatorsRender?: TourProps['indicatorsRender']; classNames?: TourSemanticAllType['classNames']; styles?: TourSemanticAllType['styles']; actionsRender?: TourProps['actionsRender']; } declare const TourPanel: React.FC; export default TourPanel;