import type { HubspotFieldResponse, HubspotFormContext, HubspotFormSubmissionResponse } from '../types'; export interface SubmitHubspotFormResult { success?: boolean; failure?: string; data?: HubspotFormSubmissionResponse; } export declare function submitHubspotForm(portalId: string, formId: string, fields: HubspotFieldResponse[], context: HubspotFormContext, formStartTime: number, formEndTime: number): Promise; //# sourceMappingURL=submitForm.d.ts.map