/** * Sends a lead directly to the Clickmax ingest endpoint. * Use this when the host page already owns the markup and submit lifecycle. */ export declare function submitLead(options: SubmitLeadOptions): Promise; declare interface SubmitLeadInput { email?: string; lgpdApproved?: boolean; name?: string; telephone?: string; utmCampaign?: string; utmContent?: string; utmMedium?: string; utmSource?: string; utmTerm?: string; } export declare interface SubmitLeadOptions { apiUrl?: string; data: SubmitLeadInput; signal?: AbortSignal; slug: string; } declare interface SubmitLeadResponse { leadId: string; redirectUrl?: string | null; } export { }