///
import type { FormProps } from 'antd';
import type { StepProps } from 'rc-steps/lib/Step';
import type { CommonFormProps } from '../../BaseForm';
export declare type StepFormProps> = {
step?: number;
stepProps?: StepProps;
} & Omit, 'onFinish'> & Omit, 'submitter'>;
declare function StepForm>({ onFinish, step, formRef: propFormRef, title, stepProps, ...restProps }: StepFormProps): JSX.Element;
export default StepForm;