import * as React from "react"; import * as react_jsx_runtime102 from "react/jsx-runtime"; //#region src/components/forms/FormStepsLayout.d.ts interface StepDef { key: string; title: React.ReactNode; description?: React.ReactNode; content: React.ReactNode; } interface FormStepsLayoutProps { steps: StepDef[]; initialStepKey?: string; onFinish?: () => void | Promise; canNext?: (stepKey: string) => boolean; className?: string; } declare function FormStepsLayout({ steps, initialStepKey, onFinish, canNext, className }: FormStepsLayoutProps): react_jsx_runtime102.JSX.Element | null; //#endregion export { FormStepsLayout }; //# sourceMappingURL=FormStepsLayout.d.ts.map