/** * Extract headings directly from web pages without external scripts * This utility function can be used by anyone who integrates the AdMesh UI SDK */ export interface HeadingsExtractionResult { title: string; headings: string[]; article_text?: string; url: string; domain: string; extracted_at: string; } /** * Extract headings directly from the current web page * Bypasses CSP restrictions by using direct DOM access * * @returns {HeadingsExtractionResult | null} Object containing title, headings, and metadata */ export declare function extractHeadingsDirectly(): HeadingsExtractionResult | null; //# sourceMappingURL=extractHeadings.d.ts.map