import { type LeadFormState } from '../../retail/model/LeadFormState'; export declare const getDeliveryData: (formData: LeadFormState) => {}; export declare const getOfficeCode: (formData: LeadFormState) => { courierDeliveryFlg: boolean; office: { id: string; }; } | { courierDeliveryFlg?: undefined; office?: undefined; }; export declare const getDeliveryDebitData: (formData: LeadFormState) => { participantAddresses: any[]; } | { participantAddresses?: undefined; }; export declare const getDebitCardData: (formData: LeadFormState) => { latinFirstname: string | undefined; latinSurname: string | undefined; latinName: string; };