/// import { BubbleProperties } from './bubble.properties'; import './bubble.styles.scss'; /** * Bubble component * @description A component that renders a bubble with content inside and receives a variant property * to define the style * @param {BubbleProperties} properties * @returns A bubble component */ export default function BubbleComponent(properties: BubbleProperties): JSX.Element;