admesh-ui-sdk
Version:
Beautiful, modern React components for displaying AI-powered product recommendations with citation-based conversation ads, auto-triggered widgets, floating chat, conversational interfaces, persistent sidebar, and built-in tracking. Includes zero-code SDK
15 lines • 645 B
TypeScript
import { default as React } from 'react';
import { AdMeshRecommendation, AdMeshTheme } from '../types/index';
export interface AdMeshBridgeFormatProps {
recommendation: AdMeshRecommendation;
theme?: AdMeshTheme;
className?: string;
style?: React.CSSProperties;
sessionId?: string;
onLinkClick?: (recommendation: AdMeshRecommendation) => void;
/** Callback to paste content to input field (for CTA button) */
onPasteToInput?: (content: string) => void;
}
export declare const AdMeshBridgeFormat: React.FC<AdMeshBridgeFormatProps>;
export default AdMeshBridgeFormat;
//# sourceMappingURL=AdMeshBridgeFormat.d.ts.map