import { ReactNode } from "react"; interface Props { customerId: string; corpusIds: string[]; apiKey: string; title?: string; placeholder?: string; inputSize?: "large" | "medium"; emptyStateDisplay?: ReactNode; isInitiallyOpen?: boolean; zIndex?: number; summarizer?: string; promptText?: string; } /** * The main chat view * Defaults to a minimized button at the bottom of the screen, unless specified otherwise by `isOpened` prop. * Expands to show a chat window consisting of a text input, submit button, and chat messages window. */ export declare const ChatView: ({ customerId, corpusIds, apiKey, title, placeholder, inputSize, emptyStateDisplay, isInitiallyOpen, zIndex, summarizer, promptText }: Props) => JSX.Element; export {};