import * as React from "react"; import * as react_jsx_runtime103 from "react/jsx-runtime"; //#region src/components/forms/FormOneByOneLayout.d.ts interface OneByOneFieldDef { key: string; title: React.ReactNode; description?: React.ReactNode; input: React.ReactNode; validate?: () => boolean; } interface FormOneByOneLayoutProps { fields: OneByOneFieldDef[]; initialKey?: string; onComplete?: () => void | Promise; className?: string; } declare function FormOneByOneLayout({ fields, initialKey, onComplete, className }: FormOneByOneLayoutProps): react_jsx_runtime103.JSX.Element | null; //#endregion export { FormOneByOneLayout }; //# sourceMappingURL=FormOneByOneLayout.d.ts.map