/// import { TextProps, ViewProps } from 'react-native'; interface Props { backgroundSystem?: string; backgroundUser?: string; isLeft?: boolean; style?: ViewProps['style']; textStyle?: TextProps['style']; text?: string; } export default function SpeechBubble({ backgroundSystem, backgroundUser, isLeft, style, text, textStyle }: Props): JSX.Element; export {};