plazbot
Version:
Official Plazbot SDK for creating AI agents for WhatsApp, portals, and developers.
10 lines (9 loc) • 396 B
TypeScript
import type { CSSProperties } from 'react';
export interface ChatInputProps {
onSend: (content: string, file?: string) => void;
disabled?: boolean;
placeholder?: string;
allowAttachments?: boolean;
style?: CSSProperties;
}
export declare function ChatInput({ onSend, disabled, placeholder, allowAttachments, style, }: ChatInputProps): import("react/jsx-runtime").JSX.Element;