Files
video-gen/video-gen-admin/node_modules/antd/es/tour/panelRender.d.ts
T
2026-05-25 17:08:18 +08:00

16 lines
544 B
TypeScript

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