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