import * as React from 'react'; import type { LayoutConfig } from '@formitiva/core'; export interface WizardLayoutProps { config: LayoutConfig; activeSection: string; onSectionChange: (name: string) => void; isNextDisabled?: boolean; children: React.ReactNode; t: (key: string) => string; renderSubmit?: () => React.ReactNode; } export declare const WizardLayout: React.FC; export default WizardLayout; //# sourceMappingURL=WizardLayout.d.ts.map