import { BoxProps } from "../Box"; export declare type SpeechBubblePlacement = "top-start" | "top-end" | "bottom-start" | "bottom-end"; export interface SpeechBubbleProps extends BoxProps { "data-placement"?: SpeechBubblePlacement; } export declare const SpeechBubble: (props: SpeechBubbleProps) => JSX.Element;