import { Component, JSXElement } from 'solid-js';
export type ChatBubbleType = 'bright' | 'dark' | 'blueberry' | 'strawberry';
export interface ChatBubbleProps {
    type?: ChatBubbleType;
    placement?: 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left';
    children: JSXElement;
}
export declare const ChatBubble: Component<ChatBubbleProps>;
