import { type LeadFormState } from '../../retail/model/LeadFormState'; import { type ReferalData } from '../../retail/model/ReferalData'; import { type Nullable } from '../../utils/Nullable'; import { type ProductType } from './ApplicationLeadFormContent'; export interface LeadFormStoreSlice { leadForm: LeadFormState; taskId: number; profileId: Nullable; participantId: number; programId: string; productType: ProductType; referalData: ReferalData; } export declare const useLeadFormStore: () => { leadForm: LeadFormState | null; taskId: number | null; profileId: Nullable; participantId: number | null; programId: string | null; productType: ProductType | null; referalData: ReferalData | null; };