import { type VariantProps } from 'class-variance-authority'; import { ComponentProps } from 'react'; declare const bubble: (props?: ({ variant?: "solid" | "outline" | "ghost" | null | undefined; color?: "accent" | "danger" | "neutral" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface MessageBubbleProps extends ComponentProps<'p'>, VariantProps { /** * Visual style of the message surface. `"ghost"` drops the surface * entirely — no background, border or padding — and renders the message as * full-width body copy. * @defaultValue "solid" */ variant?: 'solid' | 'outline' | 'ghost'; /** * Color of the message surface. * @defaultValue "neutral" */ color?: 'accent' | 'neutral' | 'danger'; } export declare function MessageBubble({ className, variant, color, ref, ...props }: MessageBubbleProps): import("react/jsx-runtime").JSX.Element; export declare namespace MessageBubble { var displayName: string; } export {}; //# sourceMappingURL=message-bubble.d.ts.map