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