import { ReactNode } from "react"; export interface Props { customerId: string; apiKey: string; corpusIds: string[]; title?: string; placeholder?: string; inputSize?: "large" | "medium"; emptyStateDisplay?: ReactNode; isInitiallyOpen?: boolean; zIndex?: number; summarizer?: string; promptText?: string; } export declare const ReactChatbot: (props: Props) => JSX.Element;