import { BotContext, ChatChunk as ChatChunkType, InputSubmitContent } from '@/types'; import { ContinueChatResponse, Settings, Theme } from '@indite.io/schemas'; type Props = Pick & { theme: Theme; settings: Settings; index: number; context: BotContext; hasError: boolean; hideAvatar: boolean; streamingMessageId: ChatChunkType['streamingMessageId']; isTransitionDisabled?: boolean; onNewBubbleDisplayed: (blockId: string) => Promise; onScrollToBottom: (ref?: HTMLDivElement, offset?: number) => void; onSubmit: (answer?: InputSubmitContent) => void; onSkip: () => void; onAllBubblesDisplayed: () => void; botContainerWidth?: string; }; export declare const ChatChunk: (props: Props) => import("solid-js").JSX.Element; export {}; //# sourceMappingURL=ChatChunk.d.ts.map