import React from "react"; import "./index.less"; export interface StepItem { title: string; content: React.ReactElement | string | number; description?: string; } export interface Props { currentStep: number; steps: StepItem[]; onStepChange: (step: number) => void; onFinish: () => void; stepLabelPlacement?: "horizontal" | "vertical"; responsive?: boolean; id?: string; className?: string; style?: React.CSSProperties; formLayout?: "horizontal" | "vertical"; buttonRenderer?: (prevButton: React.ReactElement, nextButton: React.ReactElement) => React.ReactElement; } export declare const StepFormContainer: (props: Props) => React.JSX.Element;