import React from 'react'; import { StandardFormProps, ItemGroupProps } from './index'; import './style/index.less'; export interface StepItemGroupProps extends ItemGroupProps { icon?: any; hideStep?: boolean; title?: any; status?: any; subTitle?: any; disabled?: any; } export interface StepFormProp extends StandardFormProps { stepsConfig?: any; actionHide?: boolean; stepClick?: (type?: string, formChild?: any, values?: any) => void; formItemGroup?: StepItemGroupProps[]; } declare const StepForm: React.ForwardRefExoticComponent & React.RefAttributes>; export default StepForm;