@agentdao/core
Version:
Core functionality, skills, and ready-made UI components for AgentDAO - Web3 subscriptions, content generation, social media, help support, live chat, RSS fetching, web search, and agent pricing integration
10 lines (9 loc) • 331 B
TypeScript
import React from 'react';
import { LiveChatConfig } from './types';
interface LiveChatWidgetProps {
config: LiveChatConfig;
className?: string;
style?: React.CSSProperties;
}
export declare function LiveChatWidget({ config, className, style }: LiveChatWidgetProps): import("react/jsx-runtime").JSX.Element;
export {};