plazbot
Version:
Official Plazbot SDK for creating AI agents for WhatsApp, portals, and developers.
11 lines (10 loc) • 492 B
TypeScript
import type { CSSProperties } from 'react';
import type { AgentData } from '../../sdk-types';
export interface EmptyStateProps {
agent: AgentData | null;
/** Preguntas sugeridas custom (override de agent.examples) */
suggestedQuestions?: string[];
onSuggestionClick?: (question: string) => void;
style?: CSSProperties;
}
export declare function EmptyState({ agent, suggestedQuestions, onSuggestionClick, style }: EmptyStateProps): import("react/jsx-runtime").JSX.Element;