import type { Message } from "ai"; import type { ReactNode } from "react"; export declare function ChatWindow(props: { endpoint: string; emptyStateComponent: ReactNode; placeholder?: string; emoji?: string; showIngestForm?: boolean; showIntermediateStepsToggle?: boolean; initialMessages?: Message[]; conversationId?: string; onConversationCreated?: (conversationId: string) => void; onMessageFinished?: () => void; baseUrl?: string; inputClassName?: string; buttonsClassName?: string; dropdownClassName?: string; dropdownDirection?: 'top' | 'bottom'; useProxy?: boolean; proxyUrl?: string; corsHeaders?: Record; organizationId?: string; publicScope?: boolean; isAuthenticated?: boolean; }): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ChatWindow.d.ts.map