import { AdMeshSDKConfig } from '../sdk/AdMeshSDK'; import { Suggestion } from '../components/AdMeshIntentAssistant'; export interface CommercialIntentRequest { url: string; title?: string; headings?: string[]; article_text?: string; domain: string; article_slug?: string; agent_id?: string; cpx_floor?: number; source: string; api_key: string; user_id?: string; } export interface CommercialIntentResult { url: string; domain: string; suggestions: Suggestion[]; } /** * Call ACIE analyze-intent endpoint to analyze commercial intent of a page * * @param headingsData - Page data including title, headings, URL, and domain * @param config - AdMesh SDK configuration containing API base URL and API key * @returns Promise - Intent analysis results or null on error */ export declare function callAnalyzeIntentEndpoint(headingsData: { url: string; title?: string; headings?: string[]; article_text?: string; domain: string; }, config: AdMeshSDKConfig): Promise; //# sourceMappingURL=acieApi.d.ts.map