UNPKG

plazbot

Version:

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

8 lines (7 loc) 301 B
import type { CSSProperties } from 'react'; import type { ActionExecuted } from '../../sdk-types'; export interface EventCardProps { action: ActionExecuted; style?: CSSProperties; } export declare function EventCard({ action, style }: EventCardProps): import("react/jsx-runtime").JSX.Element;