amis-rpc-design/node_modules/antd/lib/tour/panelRender.d.ts

13 lines
392 B
TypeScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
import type { ReactNode } from 'react';
import React from 'react';
import type { TourStepProps } from './interface';
interface TourPanelProps {
stepProps: TourStepProps;
current: number;
type: TourStepProps['type'];
indicatorsRender?: TourStepProps['indicatorsRender'];
closeIcon?: ReactNode;
}
declare const TourPanel: React.FC<TourPanelProps>;
export default TourPanel;