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