import React, { CSSProperties } from 'react'; import { StepsProps } from 'antd'; import { StepStyle, StepSize, StepLabelPlacement, StepTemplate, IconSettingItem, StepAlias } from './StepComponent'; import { ArrowStepItemProps } from './ArrowStepItem'; export interface MyStepsProps { visible: boolean; stepsOptions: any | any[]; defaultStepsOptions: any; valName: string; staticService: any; dataSource?: any; options?: any; current?: any; onValueRelease?: any; onChange?: any; alias: Partial; labelPlacement: StepLabelPlacement; stepStyle: StepStyle; size: StepSize; iconSetting: IconSettingItem[]; onClick?: (value: number, obj: any) => void; backgroundType?: any; style: CSSProperties; stepSpace?: number | string; direction?: StepsProps['direction']; template?: StepTemplate; } declare const MySteps: React.ForwardRefExoticComponent & import("@lingxiteam/types").EngineBaseProps & React.RefAttributes>; export default MySteps;