import * as class_variance_authority_types from 'class-variance-authority/types'; import * as react_jsx_runtime from 'react/jsx-runtime'; import * as React from 'react'; import { VariantProps } from 'class-variance-authority'; declare function BubbleGroup({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element; declare const bubbleVariants: (props?: ({ variant?: "default" | "outline" | "secondary" | "ghost" | "destructive" | "muted" | "tinted" | null | undefined; } & class_variance_authority_types.ClassProp) | undefined) => string; declare function Bubble({ variant, align, className, ...props }: React.ComponentProps<"div"> & VariantProps & { align?: "start" | "end"; }): react_jsx_runtime.JSX.Element; declare function BubbleContent({ asChild, className, ...props }: React.ComponentProps<"div"> & { asChild?: boolean; }): react_jsx_runtime.JSX.Element; declare function BubbleReactions({ side, align, className, ...props }: React.ComponentProps<"div"> & { align?: "start" | "end"; side?: "top" | "bottom"; }): react_jsx_runtime.JSX.Element; export { Bubble, BubbleContent, BubbleGroup, BubbleReactions, bubbleVariants };