/// export interface Bubble { text: string; isLeft: boolean; } interface Props { backgroundSystem?: string; backgroundUser?: string; bubbles: Bubble[]; fontFamily: string; gradientColors: string[]; listening?: boolean; } export default function SpeechBubbles({ backgroundSystem, backgroundUser, bubbles, fontFamily, gradientColors, listening }: Props): JSX.Element; export {};