UNPKG

plazbot

Version:

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

12 lines (11 loc) 493 B
import type { CSSProperties, ComponentType } from 'react'; import type { ActionExecuted } from '../../sdk-types'; export interface ToolResultRendererProps { action: ActionExecuted; /** Renderers custom por intent */ customRenderers?: Record<string, ComponentType<{ action: ActionExecuted; }>>; style?: CSSProperties; } export declare function ToolResultRenderer({ action, customRenderers, style }: ToolResultRendererProps): import("react/jsx-runtime").JSX.Element;