@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) • 371 B
TypeScript
import React from 'react';
import { Web3SubscriptionConfig } from './types';
interface Web3SubscriptionWidgetProps {
config: Web3SubscriptionConfig;
className?: string;
style?: React.CSSProperties;
}
export declare function Web3SubscriptionWidget({ config, className, style }: Web3SubscriptionWidgetProps): import("react/jsx-runtime").JSX.Element;
export {};