import { ReactNode } from 'react'; import type { Message } from 'ai'; export interface ChatWindowWrapperProps { endpoint: string; emptyStateComponent: ReactNode; placeholder?: string; emoji?: string; showIngestForm?: boolean; showIntermediateStepsToggle?: boolean; initialMessages?: Message[]; conversationId?: string; onConversationCreated?: (conversationId: string) => void; onMessageFinished?: () => void; } export declare function ChatWindowWrapper(props: ChatWindowWrapperProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ChatWindowWrapper.d.ts.map