import type { MessageType } from '@/widget/types'; import type { BranchPager } from '@/widget/controllers/messageVersions'; type Props = { message: MessageType; apiHost?: string; deploymentId: string; chatId: string; showAvatar?: boolean; avatarSrc?: string; backgroundColor?: string; textColor?: string; fontSize?: number; renderHTML?: boolean; /** Resend this turn as new text. Omitted where editing is unsupported, which hides the action. */ onEdit?: (content: string) => void; /** This turn's version state, when it has been edited. */ branchPager?: BranchPager; /** Page to another version of this turn. */ onSwitchBranch?: (branchIndex: number) => void; branchSwitchDisabled?: boolean; }; export declare const GuestBubble: (props: Props) => import("solid-js").JSX.Element; export {};