UNPKG

plazbot

Version:

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

9 lines (8 loc) 239 B
import type { AgentData } from '../sdk-types'; export interface UseAgentReturn { agent: AgentData | null; isLoading: boolean; error: string | null; refetch: () => void; } export declare function useAgent(): UseAgentReturn;