plazbot
Version:
Official Plazbot SDK for creating AI agents for WhatsApp, portals, and developers.
8 lines (7 loc) • 304 B
TypeScript
import type { CSSProperties } from 'react';
import type { ActionExecuted } from '../../sdk-types';
export interface ActionCardProps {
action: ActionExecuted;
style?: CSSProperties;
}
export declare function ActionCard({ action, style }: ActionCardProps): import("react/jsx-runtime").JSX.Element;