UNPKG

plazbot

Version:

Official Plazbot SDK for creating AI agents for WhatsApp, portals, and developers.

8 lines (7 loc) 298 B
import type { CSSProperties } from 'react'; import type { AgentSource } from '../../sdk-types'; export interface SourceCardProps { source: AgentSource; style?: CSSProperties; } export declare function SourceCard({ source, style }: SourceCardProps): import("react/jsx-runtime").JSX.Element;