import { type UpdateUserTaskDebitBody } from '../../retail/api/updateUserTaskDebit'; import { type LeadFormState } from '../../retail/model/LeadFormState'; declare type getDebitFormTaskDataProps = { participantId: number; taskId: number; formData: LeadFormState; programId: string; step?: number; }; export declare const getDebitCardFormTaskData: ({ participantId, taskId, formData, programId, step, }: getDebitFormTaskDataProps) => UpdateUserTaskDebitBody; export {};