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