import { type LeadFormState } from '../../retail/model/LeadFormState'; import { type Nullable } from '../../utils/Nullable'; export interface UserData { participantId: number; taskId: number; profileId?: Nullable; programId: string; formData: LeadFormState; } export declare const useSaveUserData: () => ({ participantId, taskId, profileId, programId: programNumber, formData }: UserData) => void;