import { InvestorFormData } from '../types/InvestorFormData';
/**
 * Merges form data between wizard steps, ensuring all fields are preserved
 * This utility handles the complex merging logic that would otherwise need to be
 * implemented by every consumer of the library
 */
export declare const mergeInvestorFormData: (prev: Partial<InvestorFormData>, next: Partial<InvestorFormData>) => InvestorFormData;
