import React from 'react'; import type { Colors, CommonComponentProps, MarginModifierProp, ModifierClassProp } from '../types'; import type { GetRef } from '../utils/refs'; interface SpeechBubbleProps extends CommonComponentProps, MarginModifierProp, ModifierClassProp { bgColor?: Colors; children?: React.ReactNode; getRef?: GetRef; id?: string; tail?: 'left' | 'right' | 'none'; textColor?: Colors; } export declare function SpeechBubble({ _modifierClass, 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledby, 'aria-describedby': ariaDescribedby, bgColor, children, getRef, id, margin, tail, textColor, ...rest }: SpeechBubbleProps): React.JSX.Element; export {};