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
22 lines • 857 B
TypeScript
import { default as React } from 'react';
import { AdMeshRecommendation, AdMeshTheme } from '../types/index';
export interface AdMeshSummaryLayoutProps {
recommendations: AdMeshRecommendation[];
summaryText?: string;
theme?: AdMeshTheme;
className?: string;
style?: React.CSSProperties;
onLinkClick?: (recommendation: AdMeshRecommendation) => void;
/** Callback to paste content to input field (for bridge format CTA) */
onPasteToInput?: (content: string) => void;
sessionId?: string;
response?: {
layout_type?: string;
tail_summary?: string;
recommendations?: AdMeshRecommendation[];
requires_summary?: boolean;
};
}
export declare const AdMeshSummaryLayout: React.FC<AdMeshSummaryLayoutProps>;
export default AdMeshSummaryLayout;
//# sourceMappingURL=AdMeshSummaryLayout.d.ts.map