import type { TypingEmulation } from '@/schemas'; import type { FeedbackType } from '@/queries/sendFeedbackQuery'; type MessageLike = { parts?: Array<{ type?: string; text?: string; }>; content?: string; }; type Props = { message: MessageLike; typingEmulation: TypingEmulation; onTransitionEnd: (offsetTop?: number) => void; filterResponse?: (response: string) => string; isPersisted?: boolean; showActionBar?: boolean; isCorrectivePopupEnabled?: boolean; selectedFeedbackType?: FeedbackType; isFeedbackPending?: boolean; onFeedbackSubmit?: (payload: { messageId: string; type: FeedbackType; correctiveAnswer?: string; }) => void | Promise; }; export declare const HostBubble: (props: Props) => import("solid-js").JSX.Element; export {}; //# sourceMappingURL=HostBubble.d.ts.map