import type { FeedbackType } from '@/queries/sendFeedbackQuery'; import type { TypingEmulation } from '@/schemas'; type MessageLike = { id?: string; 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 showAnimationDuration = 400; export declare const TextBubble: (props: Props) => import("solid-js").JSX.Element; export {}; //# sourceMappingURL=TextBubble.d.ts.map