plazbot
Version:
Official Plazbot SDK for creating AI agents for WhatsApp, portals, and developers.
11 lines (10 loc) • 408 B
TypeScript
import type { CSSProperties } from 'react';
import type { AgentData } from '../../sdk-types';
export interface AgentHeaderProps {
agent: AgentData | null;
subtitle?: string;
showStatus?: boolean;
onReset?: () => void;
style?: CSSProperties;
}
export declare function AgentHeader({ agent, subtitle, showStatus, onReset, style }: AgentHeaderProps): import("react/jsx-runtime").JSX.Element;