import { CSSProperties } from 'react'; import { StepsProps } from 'antd'; import { LingXiEdFC } from '@lingxiteam/types'; import { StepSize, StepLabelPlacement, StepTemplate, IconSettingItem } from '../StepComponent'; import { ArrowStepItemProps } from '../ArrowStepItem'; export interface MyStepsEDProps { stepsOptions: any; defaultStepsOptions: any; valName: string; staticService: any; showInfo?: any; className: string; labelPlacement: StepLabelPlacement; size: StepSize; exampleData: any[]; iconSetting: IconSettingItem[]; progressDot?: boolean; dataSource: any; backgroundType?: any; style?: CSSProperties; direction?: StepsProps['direction']; stepSpace?: number | string; template?: StepTemplate; } declare const StepsED: LingXiEdFC>; export default StepsED;